> Message: 4
> Date: Mon, 26 Mar 2012 09:09:00 +0200
> From: Marcin 'Rambo' Roguski <ra...@id.uw.edu.pl>
> To: mplaye...@mplayerhq.hu
> Subject: Re: [MPlayer-users] Failed to encode ntsc dvd
> Message-ID: <20120326090900...@id.uw.edu.pl>
> Content-Type: text/plain; charset=US-ASCII
>
> > > File not found: 'crop=716:462:2:8,scale=720:-10'
> > > Failed to open crop=716:462:2:8,scale=720:-10.
> > > Cannot open file/device.
>
> isn't crop a -vf?
>
Message: 3
Date: Sun, 25 Mar 2012 22:33:03 +0100
From: Zacharias <zach...@uymail.com>
To: mplaye...@mplayerhq.hu
Subject: [MPlayer-users] Failed to encode ntsc dvd
Message-ID:
<CAMBfKexPwv7Gn1cqokp_ekKb...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
hey there.
i wanted to backup a dvd that is a ntsc dvd with 29.97fps. i first dumped
the only the video data and the sound seperatly, as always.
so what i did was, to use my usual backup script and ADD the
progressive/telecined solution stated on mencoder documentation here:
http://www.mplayerhq.hu/DOCS/HTML/en/MPlayer.html#menc-feat-telecine-encode-mixedpt
and wrote the following script:
# 1st pass #
> mencoder dirty.m2v -vf pullup,softskip -ofps 24000/1001
> crop=716:462:2:8,scale=720:-10 -nosound -ovc x264 \
> -x264encopts profile=high:level=4.1:pass=1:
>
> bframes=9: [...]
> > bitrate=2162:threads=auto \
> > -of rawvideo -o movie.avc \
> > # 2nd pass #
> > #################################################################
> > mencoder dirty.m2v -vf pullup,softskip -ofps 24000/1001
> > crop=716:462:2:8,scale=720:-10 -nosound -ovc x264 \
> > -x264encopts profile=high:level=4.1:pass=2:bframes=9: [...]
> > bitrate=2162:threads=auto \
> > -of rawvideo -o movie.avc
> >
>
> and got this error:
>
> Pos:5329.9s 128165f (99%) 14.38fps Trem: 0min 1367mb A-V:0.000 [2151:0]
> > File not found: 'crop=716:462:2:8,scale=720:-10'
> > Failed to open crop=716:462:2:8,scale=720:-10.
> > Cannot open file/device.
> >
> > Exiting...
> > MEncoder SVN-r33713-4.4.5 (C) 2000-2011 MPlayer Team
> > success: format: 0 data: 0x0 - 0xe316119c
> > MPEG-ES file format detect
> >
>
> Seems to me tah 1st pass went well, but weirdly second pass gave me this
> error.
> i dont know if i made a typpo anyware, wich i think it probably is, but
> gelp is needed with much worry.
> thanks in advance.
> kudos
> --
> ZACH
>
>
_______________________________________________
MPlayer-users mailing list
MPlaye...@mplayerhq.hu
https://lists.mplayerhq.hu/mailman/listinfo/mplayer-users
you simply have syntax error: it should be -vf pullup,softskip,crop=...
then -ofps, which somehow got in the middle of this list.
> > mencoder dirty.m2v -vf pullup,softskip -ofps 24000/1001
^^^^^^^^^^^^^
> > crop=716:462:2:8,scale=720:-10 -nosound -ovc x264 \
Please don't top post.
mencoder \
dirty.m2v \
-vf pullup,softskip \
-ofps 24000/1001 \
-vf crop=716:462:2:8,scale=720:-10 \
-nosound \
-ovc x264 \
-x264encopts profile=high:level=4.1:pass=1 \
-o /dev/null
Cheers
Tom
Shouldn't the second -vf be changed to -vf-add ?
Greets,
Kiste
Oops, yes you're right - didn't notice the first one when making it
more readable :)
Cheers
Tom