Page 1 of 1

H265 to H264

PostPosted: Thu Feb 18, 2016 6:02 pm
by dilzzz
Hi there,

I was wondering if it was possible to force transcoding H265 files to H264 using the profiles.xml file and was wondering how I would go about it? This is not for 4K files, just for HD sized files.

Tried doing a search on here but nothing showed up, so apologies if this question has been asked before and I've missed it.

Any help would be gratefully received.

Thanks in advance

Re: H265 to H264

PostPosted: Tue Feb 23, 2016 3:14 am
by DenyAll
In the Transcoding section of your profile, you could add:

  Code:
<Video targetContainer="m2ts" targetVCodec="h264">
   <Matches container="*" vCodec="h265" />
</Video>
which will achieve what you want (assuming your renderer supports h264 in an mpeg-2 container), if your processor is powerful enough to do this in real time. Question - why transcode to h624? You don't really gain anything and its far more processor intensive than transcoding to mpeg-2?

Re: H265 to H264

PostPosted: Wed Feb 24, 2016 8:49 pm
by dilzzz
Thank you so much for your reply DenyAll.

I'm going to assume from your question that MPEG-2 supports high definition? If so then I suppose I don't need to transcode to h624.

I'll try them both using your XML snippet.

Many thanks again. Much appreciated. :)