Only audio transcoding to 128 bitrate

Last post 03-25-2008 1:43 PM by dotmlj. 2 replies.
Page 1 of 1 (3 items)
Sort Posts: Previous Next
  • 03-13-2008 5:29 PM

    • dotmlj
    • Top 25 Contributor
    • Joined on 02-25-2008
    • Copenhagen, Denmark
    • Posts 15

    Only audio transcoding to 128 bitrate

    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)

    Dim nirvAudio As New Audio()

    Dim options As String() = {"bitRate:64"}

    nirvAudio.Transcode(SessionToken, "test01/testmp3.mp3", "test01/testmp3_64.mp3", Nothing, options)

    Yours
    dotmlj
    Filed under: , ,
  • 03-19-2008 3:52 AM In reply to

    • BarryR
    • Top 10 Contributor
    • Joined on 07-20-2007
    • San Diego
    • Posts 630

    Re: Only audio transcoding to 128 bitrate

     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.

    IM Support (Feel free to add me)

    MSN: barryruffner@msn.com
    Gmail: barryruffner@gmail.com
  • 03-25-2008 1:43 PM In reply to

    • dotmlj
    • Top 25 Contributor
    • Joined on 02-25-2008
    • Copenhagen, Denmark
    • Posts 15

    Re: Only audio transcoding to 128 bitrate

    That works, thanks.

    You should update the API documentation:
    http://developer.nirvanix.com/sitefiles/1000/API.html#_Toc180000000

    Yours
    dotmlj
Page 1 of 1 (3 items)