Hi.
I'm trying to transcode an MP3 file to a bitrate of 64 but the resulting transcodet files are always 128. It's like the system ignors the bitrate:64 option. My code is as follows (.Net 2.0 VB)
nirvAudio.Transcode(SessionToken,
You need to change the value:
Dim options As String() = {"bitRate:64"}
to read:
Dim options As String() = {"bitRate:64000"}
Let me know if this corrects your problem.
Regards, Barry R.
That works, thanks.
You should update the API documentation:http://developer.nirvanix.com/sitefiles/1000/API.html#_Toc180000000