Le tridi 13 frimaire, an CCXXIII, Adrian Meyer a écrit :
> The "real" output:
> lsdvd iso -Op -x 2>/dev/null
> 
> our %lsdvd = (
>   %s => device'iso',
>   %s => title'unknown',
>   %s => vmg_id'DVDVIDEO-VMG',
>   %s => provider_id'',
>   track => [
>     {
>       %s => ix1,
>       %s => length6126.533,

I believe there is no need to search further: your version of dvd2concat
seems utterly broken. Here is how the output should look like:

our %lsdvd = (
  device => 'XXX.iso',
  title => 'XXX',
  vmg_id => 'DVDVIDEO-VMG',
  provider_id => 'XXX',
  track => [
    {
      ix => 1,

I do not know if you are familiar with C, but "%s" is a format string that
is supposed to be replaced by a string. You can achieve the same thing in
shell:

        printf "  %s => \n" device

If you use a plain echo instead of printf, the output looks like your
version.

I do not know how it arrived there, but you need to reinstall a working
version.

Regards,

-- 
  Nicolas George

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Reply via email to