[mythtv-commits] Ticket #3810: nuvexport - h264 not properly passed to ffmpeg

MythTV mythtv at cvs.mythtv.org
Thu Aug 9 21:47:13 UTC 2007


#3810: nuvexport - h264 not properly passed to ffmpeg
--------------------------------+-------------------------------------------
 Reporter:  skd5aner at gmail.com  |        Owner:  xris   
     Type:  defect              |       Status:  new    
 Priority:  minor               |    Milestone:  unknown
Component:  perl / nuvexport    |      Version:  head   
 Severity:  medium              |   Resolution:         
  Mlocked:  0                   |  
--------------------------------+-------------------------------------------

Comment(by skd5aner at gmail.com):

 Well, I figured out that h264 is now referenced as the decoder for ffmpeg,
 but libx264 is referenced as the decoder.  I was able to fix this by
 chaning the following line in MP4.pm


 {{{
                     elsif ($codec =~ /^h/) {
                         $self->{'mp4_codec'} = 'h264';
                         last;
                     }

 }}}

 to

 {{{
                     elsif ($codec =~ /^h/) {
                         $self->{'mp4_codec'} = 'libx264';
                         last;
                     }

 }}}

 This would probably break backwards compatibility if it was simply left
 like this however.

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/3810#comment:1>
MythTV <http://svn.mythtv.org/trac>
MythTV


More information about the mythtv-commits mailing list