[mythtv-users] nuvexport users.. on Ubuntu

Steve Smith st3v3.sm1th at gmail.com
Sat Feb 16 09:45:11 UTC 2008


On 15/02/2008, A JM <vbtalent at gmail.com> wrote:
>
> Thanks for the reply's.
>
> Steve, can you be alittle more specific where this setting is located?
>
> "edit the perl code to use -b for bitrate."
>
> When creating DVD's from within Myth I'm able to get good results from not
> re-encoding the recording. Does that still run the recording through some
> kind of Transcoding process to make it fit or be DVD compliant?
>
> Doesn't myth use Transcoding when creating DVD's?
>
> Since this process is really about watching my Myth recordings on my Xbox
> 360 and it recognizes Xvid what would be the best way to convert / relabel
> the recordings to Xvid so they could be watched? shouldn't it be a 1 to 1
> transfer?
>
> AJM,
>
> _______________________________________________
> mythtv-users mailing list
> mythtv-users at mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
>

The file is /usr/local/share/nuvexport/export/ffmpeg.pm

Around line 172:
Change

    # Unknown, just return the parameter
        return param_pair($param, $value);
    }

To:

    # Unknown, just return the parameter
        return param_pair('b',              $value) if ($param eq
'bit_rate');
        return param_pair($param, $value);
    }

It's a bit of a hack but it worked on my installation, really it needs
debugging it's due to a mismatch between the versions of nuvexport and
ffmpeg. Ffmpeg keep changing their command line options, nuvexport tries to
compensate but it looks like in the unbuntu version the compensation has
quite worked.

An easier way is to set nuvexport to use "transcode" or "mencoder"
instead... look in the wiki for details.

Cheers

Steve
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mythtv.org/pipermail/mythtv-users/attachments/20080216/55e279f0/attachment.htm 


More information about the mythtv-users mailing list