Post Fri May 18, 2012 11:29 am

Re: Slow on transcoding - QNAP 259+

good, try to throw as many formats on it as possible. It still doesn't seem right for the asf and flv files, as they would be remuxed into mpegts, which doesn't make sense (wmv video in mpegts of flash video in mpegts).

It's also possible we'll have to add more mime-type changes as he one weadded matches exactly HD h264/ac3 content in mpegts.

EDIT: This should be better:
  Code:
<Profile id="18" name="Sharp Aquos" extendsProfileId="1">
      <Detection>
         <HttpHeaders>
            <User-Agent>.*SHARP-AQUOS.*</User-Agent>
         </HttpHeaders>
      </Detection>
      <MediaFormatProfiles>
         <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU_ISO">AVC_TS_MP_HD_AC3_ISO</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/avi" name="">AVI</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/mp4">MPEG4_P2_3GPP_SP_L0B_AAC</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/mp4">MPEG4_P2_3GPP_SP_L0B_AMR</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/mp4">AVC_3GPP_BL_QCIF15_AAC</MediaFormatProfile>
      </MediaFormatProfiles>
      <Transcoding>
         <Video targetContainer="mpegts" targetACodec="ac3" aBitrate="384">
            <Matches container="matroska" vCodec="h264"/>
            <Matches container="flv" vCodec="h264"/>            
         </Video>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="matroska" />
            <Matches container="flv" />
            <Matches container="wtv" />
            <Matches container="mp4" aCodec="ac3" />
            <Matches container="asf" />
         </Video>
         <Audio targetContainer="lpcm">
            <Matches container="asf" />
            <Matches container="flac" />
            <Matches container="ogg" />
         </Audio>
      </Transcoding>
      <OnlineTranscoding>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="mp4" />
         </Video>
      </OnlineTranscoding>
      <AutomaticImageRotation>true</AutomaticImageRotation>
      <LimitImageResolution>false</LimitImageResolution>
   </Profile>