Page 1 of 1
Lower audio bitrate for steaming

Posted:
Tue Jan 28, 2014 4:02 pm
by Jazy5552
I need help with lowering the audio bitrate that the MediaBrowser is streaming. I can't seem to find the correct field nor do I know which profile I am supposed to edit.
If I could lower the bitrate on all the songs that are streamed through MediaBrowser then I'd be golden!
Re: Lower audio bitrate for steaming

Posted:
Tue Jan 28, 2014 4:18 pm
by jhb50
The bit rate is set by the streaming server. You cannot lower it. You can of course transcode it after you receive it but what would be the point.
Re: Lower audio bitrate for steaming

Posted:
Tue Jan 28, 2014 4:29 pm
by Jazy5552
I mean't that I have the music on my server and I am listening to it through the internet using the MediaBrowser. Is there somewhere on the server's config files where I can change the audio bitrate to be lower because my internet upload speed is really low...
Re: Lower audio bitrate for steaming

Posted:
Tue Jan 28, 2014 4:47 pm
by will
Edit C:\Program Files\Serviio\config\application-profiles.xml
Find the profile called flv_player (right at the top) and replace
- Code:
<Audio targetContainer="mp3">
<Matches container="mp4" />
<Matches container="flac" />
<Matches container="ogg" />
<Matches container="lpcm" />
<Matches container="adts" />
<Matches container="asf" />
<Matches container="wavpack" />
<Matches container="mpc" />
<Matches container="ape" />
</Audio>
with
- Code:
<Audio targetContainer="mp3" aBitrate="64">
<Matches container="*" />
</Audio>