Hi all,
captured some classic soccer out of my cable box (analog capture).
I'm in the USA, the footage is 29.97, but the game is from England, and must have been
25 FPS when it was recorded.
The quality is not very good - unfortunately, that's the way it looked when transmitted -
the fuzziness makes it hard for me to see how best to process it.
I want to convert it from it's 4.3GB (26 minutes) to something like 200MB that
I can save on my PC. I tried to convert it to 25 FPS using the following script, but there
was an occasional skip, as if it were a dropped frame.
This is my script. Any thoughts on this ?
AviSource("i:\capture0001.avi")
AssumeTFF()
ConvertToYUY2(interlaced=true)
Yadif(Mode=1,Order=1)
SRestore(FRate=25)
Here's a sample (25MB)
http://www.mediafire.com/download.php?8zg3kkw7hghr7rt
+ Reply to Thread
Results 1 to 6 of 6
-
-
How about encoding at 59.95 fps?
AviSource("rawcapture0001.avi")
AssumeTFF()
ConvertToYUY2(interlaced=true)
ColorYUV(off_y=-60, gain_y=100, gamma_y=40)
Yadif(Mode=1,Order=1)
Crop(8,12,-44,-0)
LanczosResize(480,360)Last edited by jagabo; 27th Oct 2010 at 19:01.
-
Had no problems playing it in mpc-hc (not sure if DXVA was active or not; regardless of that it was only using 3 or 4 % cpu)
I took a look at your sample, used the hex viewer and tried to extract the options - they're all there in plain text.
I'm not afraid of the command line at all, but I'm a complete novice at x264 options. I ended up with a set of commands
that look like this. I'm sure if I had a bit more experience I could whittle it down; they're are probably many that are inferred
or defaulted to. When I tried to run it, I get an error - x264 error - can't open file '0', encoder_open failed.
I've given up with the command line for now and I'm using StaxRip. Seems to working fine this way; I'll have to see
what the final file size is; I set crf26 as you did. Here's my command line:
x264.exe --cabac --ref=3 --deblock=1:0:0 --analyse=0x3:0x113 --me=hex --subme=2 --psy --psy-rd=0.00:0.00 --merange=16 --trellis=0 --8x8dct --cqm=0 --fast-pskip --chroma-qp-offset=0 --threads=2 --nr=0 --bframes=2 --b-pyramid=2 --b-adapt=1 --b-bias=0 --direct=auto --weightb --open-gop=0 --weightp=0 --keyint=100 --min-keyint=10 --scenecut=40 --rc-lookahead=10 --crf=26.0 --qcomp=0.60 --qpmin=10 --qpmax=51 --qpstep=4 --ipratio=1.40 --stats "j:\x264enc\abc.stats" --output "tott2_new.mkv" "f:\avs\videohelp_1.avs" 480x368 -
I have several batch files in my SendTo folder so I can right click on a AVS script and use Send To to encode it. The command line wasn't as complex as the one you posted because I used one of the built in presets then overrid a few options:
x264.exe --preset=veryfast --crf 20 --ref 3 --bframes 2 --keyint 100 --output filename.mkv filename.avs
x264.exe --preset=veryfast --crf 20 --ref 3 --bframes 2 --keyint 100 --output %1.mkv %1
pause
If you are happy with the defaults you could use something as simple as:
x264.exe --crf 20 --output %1.mkv %1
x264.exe --preset=slower --tune=grain --crf 20 --output %1.mkv %1
Similar Threads
-
Need help recording sports
By Bears12 in forum Video Streaming DownloadingReplies: 7Last Post: 22nd Jan 2011, 22:50 -
DV footage flickers when converted to DVD!
By Duck_Plumber in forum Newbie / General discussionsReplies: 11Last Post: 17th May 2010, 01:43 -
footage from 5d Mark II mixed with XLII footage
By segan in forum Newbie / General discussionsReplies: 2Last Post: 13th May 2010, 14:24 -
Do you play any sports?
By johns0 in forum PollsReplies: 15Last Post: 1st Apr 2010, 11:04 -
Video Footage, Rotating the footage.
By nikon1898 in forum EditingReplies: 2Last Post: 14th Jun 2007, 04:54