Page 1 of 1

nasa.gov

PostPosted: Sat Oct 22, 2011 2:38 pm
by martyn

Re: nasa.gov

PostPosted: Sat Oct 22, 2011 9:25 pm
by jhb50
Great. Some of the videos are mpeg-4/AAC.mp4 format that when muxed for on-line create an invalid mpeg4/AAC.ts transcoded file, on my D series Samsung, so they need to be rencoded to mpeg2video/AC3.ts
Here my changed Samsung C/D profile:
Note the maxVBitrate is workaround for Bug#435

  Code:
<OnlineTranscoding>
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384" maxVBitrate=30000 > <!-- jhb50  max vbr so TV will play it  -->                                  <Matches container="mp4" vCodec="mpeg4" />  <!-- jhb50  Nasa MPEG4/AAC streams  -->
         </Video>
         <Video targetContainer="mpegts" targetACodec="ac3" aBitrate="384">
            <Matches container="mp4"/>  <!-- jhb50  to overide B profile mp4 rule  -->
         </Video>
         <Audio targetContainer="mp3">
            <Matches container="flv"/>
         </Audio>
      </OnlineTranscoding>

Re: nasa.gov

PostPosted: Sun Oct 23, 2011 1:52 pm
by martyn
nice one m8 :D