[FFmpeg-user] dvd2concat error with loopback mounted ISO

Nicolas George george at nsup.org
Thu Dec 4 22:58:19 CET 2014


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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <https://ffmpeg.org/pipermail/ffmpeg-user/attachments/20141204/64cc1616/attachment.asc>


More information about the ffmpeg-user mailing list