[SOLVED] No sound on Sony Bravia 2012 online streams
To find the cause I did the test:
ffmpeg -i output shows:
Seems I got problem with mp3 audio stream.
To solve this problem I had to add aCodec="aac" to the <Matches container="flv" vCodec="h264" aCodec="aac" /> under Sony Bravia TV (2012) profile in <OnlineTranscoding> section.
- Code:
...
<OnlineTranscoding>
<Video targetContainer="mpegts" forceInheritance="true"> <!-- do not transcode to ac3 -->
<Matches container="mp4" />
<Matches container="flv" vCodec="h264" aCodec="aac" />
<Matches container="applehttp" vCodec="h264" />
</Video>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384" DAR="16:9" forceInheritance="true">
<Matches container="asf" /> <!-- to support mms:// streams -->
<Matches container="flv" />
</Video>
</OnlineTranscoding>
Finally the sound came on after this modification of profiles.xml.
