Hey, I have a video which was recorded on a DVD player. The problem is now on that DVD disc it has 2 files, VIDEO_RM and VIDEO_TS in them are the following; VIDEO_RM: VIDEO_RM.DAT VIDEO_RM.BUP VIDEO_RM.IFO VIDEO_TS: VIDEO_TS.VOB VIDEO_TS.IFO VTS_01_0.IFO VTS_01_2.VOB VTS_01_4.VOB VIDEO_TS.BUP VIDEO_TS.BUP VTS_01_0.BUP VTS_01_1.VOB VTS_01_3.VOB What I'd like to do is somehow convert that all into .AVI format. I have already tried WinAvi, kinda worked had sound no picture. I'm not very good in this area. Help would be greatly appreciated. Thank you Max Kreeger (SHIT! I just realized this is Linux only, sorry. Could a mod please move it into the right place...I"M SO SORRY! :S)
Run AGK and use 'VTS_01_0.IFO' as the input file. Select an output file folder Choose a custom size for the output (I use 700MB for two hours of TV). 'Add Job' 'Start'. It's best to let the conversion run undisturbed - overnight is good. http://www.afterdawn.com/software/video_software/dvd_rippers/autogk.cfm
Hey, It didn't work it made a folder on my desktop called agk_tmp and in it where the following file; agk_tmp; _ video clip frames.text lastjob.vcard Vjencanje.dv2 Vjencanje_comptest Vjencanji_movie. avisynth script _.avisynth script interlace.text Vjencanji T01 2_0ch 256Kbps DELAY 64ms.AC3 file Vjencanji_codec.text Vjencanji_comptest.avisynth It also made a .avi file on my desktop but it was 0 bytes... :S So I don't know. Hope you can help Max Kreeger
[6/19/2008 11:34:41 PM] AutoGK 2.45 [6/19/2008 11:34:41 PM] OS: WinXP (5.1.2600).2 [6/19/2008 11:34:41 PM] Job started. [6/19/2008 11:34:41 PM] Input file: C:\Documents and Settings\Luka\Desktop\Vjencanji\VIDEO_TS\VTS_01_0.IFO [6/19/2008 11:34:41 PM] Output file: C:\Documents and Settings\Luka\Desktop\Vjencanji.avi [6/19/2008 11:34:41 PM] Output codec: XviD [6/19/2008 11:34:41 PM] Audio 1: ??? AC3 2ch [6/19/2008 11:34:41 PM] Subtitles: none [6/19/2008 11:34:41 PM] Format: AVI [6/19/2008 11:34:41 PM] Target size: 2040Mb [6/19/2008 11:34:41 PM] Audio 1 settings: Auto [6/19/2008 11:34:41 PM] Started encoding. [6/19/2008 11:34:41 PM] Demuxing and indexing. [6/19/2008 11:37:49 PM] Processing file: C:\Documents and Settings\Luka\Desktop\Vjencanji\VIDEO_TS\VTS_01_1.VOB [6/19/2008 11:37:49 PM] Processing file: C:\Documents and Settings\Luka\Desktop\Vjencanji\VIDEO_TS\VTS_01_2.VOB [6/19/2008 11:37:49 PM] Processing file: C:\Documents and Settings\Luka\Desktop\Vjencanji\VIDEO_TS\VTS_01_3.VOB [6/19/2008 11:37:49 PM] Processing file: C:\Documents and Settings\Luka\Desktop\Vjencanji\VIDEO_TS\VTS_01_4.VOB [6/19/2008 11:37:49 PM] Source resolution: 720x576 [6/19/2008 11:37:49 PM] Found PAL source. [6/19/2008 11:37:49 PM] Source aspect ratio: 4:3 [6/19/2008 11:37:49 PM] Color correction enabled. [6/19/2008 11:37:49 PM] Analyzing source. [6/20/2008 8:01:24 AM] Source has percentage of interlacing in motion areas: 97.05 [6/20/2008 8:01:24 AM] Source is considered to be interlaced. [6/20/2008 8:01:25 AM] Output will contain 135588 frames [6/20/2008 8:01:26 AM] Audio1 size: 173,549,568 bytes (165.51 Mb) [6/20/2008 8:01:26 AM] Overhead: 903,936 bytes (0.86 Mb) [6/20/2008 8:01:26 AM] Video size: 1,964,641,536 bytes (1873.63 Mb) [6/20/2008 8:01:26 AM] Running compressibility test. [6/20/2008 8:01:26 AM] Writing the following script to C:\Documents and Settings\Luka\Desktop\agk_tmp\Vjencanji_comptest.avs =========================================================== LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\ColorMatrix.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll") movie = mpeg2source("C:\Documents and Settings\Luka\Desktop\agk_tmp\Vjencanji.d2v") cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0) fixed_aspect = 1.06666666666667 c_width = width(cropclip) c_height = round(height(cropclip) / fixed_aspect) input_par = float(c_width)/float(c_height) input_par = (input_par > 1.4) || (input_par < 1.25) ? input_par : (4.0/3.0) out_width = 704 out_height = round(float(out_width) / input_par) hmod = out_height - (floor(out_height / 16 ) * 16) out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod) new_aspect = (float(out_width) / float(out_height)) / fixed_aspect LeakKernelDeInt(movie,order=1,sharp=true) autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0) LanczosResize(out_width,out_height) RemoveGrain(mode=2) ColorMatrix("Rec.709->Rec.601",opt=0,hints=false,threads=0) SelectRangeEvery(300,15) =========================================================== [6/20/2008 8:36:57 AM] Duration was: 35 minutes 29 seconds [6/20/2008 8:36:58 AM] Speed was: 3.18 fps. [6/20/2008 8:37:00 AM] Compressibility percentage is: 44.99 [6/20/2008 8:37:00 AM] Chosen resolution is: 560x416 ( AR: 1.35 ) [6/20/2008 8:37:00 AM] Predicted comptest value is: 71.79% [6/20/2008 8:37:00 AM] Running first pass. [6/20/2008 8:37:00 AM] Writing the following script to C:\Documents and Settings\Luka\Desktop\agk_tmp\Vjencanji_movie.avs =========================================================== LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\ColorMatrix.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain.dll") LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll") movie = mpeg2source("C:\Documents and Settings\Luka\Desktop\agk_tmp\Vjencanji.d2v") cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0) fixed_aspect = 1.06666666666667 c_width = width(cropclip) c_height = round(height(cropclip) / fixed_aspect) input_par = float(c_width)/float(c_height) input_par = (input_par > 1.4) || (input_par < 1.25) ? input_par : (4.0/3.0) out_width = 560 out_height = round(float(out_width) / input_par) hmod = out_height - (floor(out_height / 16 ) * 16) out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod) new_aspect = (float(out_width) / float(out_height)) / fixed_aspect LeakKernelDeInt(movie,order=1,sharp=true) autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0) LanczosResize(out_width,out_height) RemoveGrain(mode=2) ColorMatrix("Rec.709->Rec.601",opt=0,hints=false,threads=0) =========================================================== [6/20/2008 1:41:17 PM] Duration was: 5 hours 4 minutes 15 seconds [6/20/2008 1:41:17 PM] Speed was: 7.43 fps. [6/20/2008 1:41:18 PM] Expected quality of first pass size: 66.63% [6/20/2008 1:41:18 PM] Running second pass. [6/20/2008 4:15:44 PM] Duration was: 2 hours 34 minutes 26 seconds [6/20/2008 4:15:44 PM] Speed was: 14.63 fps. [6/20/2008 4:15:44 PM] Job finished. Total time: 16 hours 41 minutes 3 seconds
I can't see anything wrong with the log. I assume the DVD plays ok on the PC? You can try this other converter;either AGK is messing-up or the source files are. http://www.videohelp.com/tools/SimpleDivX
Yes it works on my PC fine. But it was recorded through a VERY shitty DVD player and sometimes DVD's wouldn't play at all. I have a couple of DVD's recorded by this shit DVD player some work some don't. So it could be that.