Traver
19th August 2005, 21:38
I got a single VOB file, that I need to convert into avi.
I don't have the ifo file or any of the other files that normally is associated with the VOB file.
I have tried to use GKnot to make the conversion, with no luck.
1. I open vStrip and select the VOB file for input, I don't select a IFO file, because I donīt got it. then I select a output name. And let it run.
2. I use the DGindex. Open the vob file i created using vStrip, and click OK
check that the frame rate is correct, and hit F4, to save project.
3. I open the d2v file from the gKnot left corner, and click "save and encode"
Choose SVCD and push "save and encode"
4. I select the .wav file that has been created for audio 1 , go to the divX tap
and ad the job to the queue
but when I get this error..
nandub error
avisynth open failure
Evaluate:unrecognized exception!
(c:\Film\test.avs, line49)
Need help ;-)
Traver
19th August 2005, 21:50
Donīt know if the log file will help anything. but here it is.
_________________________________________________________________
18-08-2005 06:32:41: Job " 1 - test.avi" started.
o DivX3-First Pass: C:\Documents and Settings\traver\Desktop\Test\test.avs
o DivX3-Second Pass: C:\Documents and Settings\traver\Desktop\Test\test.avs
o Mux Audio.
End of Job 1 ( 1 - test.avi).
_______________________________________________________________________________________________________________________
Gordian Knot
Encoding Job Data:
Type: EncD3_Both
Container: Audio-Video Interleave (AVI)
Number: 1
Name: 1 - test.avi
Platform: WinXP (5.1.2600).2
Files:
VirtualDubModExe: C:\PROGRA~1\GORDIA~1\VirtualDubMod\VirtualDubMod.exe
NandubExe: C:\PROGRA~1\GORDIA~1\nandub\Nandub.exe
AviFinal: C:\Documents and Settings\traver\Desktop\Test\test.avi
AviMovie: C:\Documents and Settings\traver\Desktop\Test\test_Movie.avi
AviCredits: C:\Documents and Settings\traver\Desktop\Test\test_Credits.avi
MovieFS: C:\Documents and Settings\traver\Desktop\Test\test.avs
CreditsFS:
Log : C:\Documents and Settings\traver\Desktop\Test\test.log
Stats: C:\Documents and Settings\traver\Desktop\Test\test.stats
Ecf : C:\Documents and Settings\traver\Desktop\Test\test.ecf
Options:
Quality/DRF: 0
CreditsStart: 0
UseEcf: 1
CreditsIVTC: 0
CreditsAppend: 0
DeleteInterm.: 0
EnforceBitrate: 0
AntiShit: 0
Calculator:
VideoSize: 716086 kbyte.
Audio1Size: 0 kbyte.
Audio2Size: 0 kbyte.
Overhead: 713 kbyte.
AviSize: 716800 kbyte (700 mbyte).
FilesSize: 0 kbyte.
TotalSize: 716800 kbyte (700 mbyte).
Interleaving:
Bitrate: 5784 k(=1024)Bits/s
Frames: 29686
FPS: 29.970
Duration: 016:31
Quality: 0.429 bits/(pixel*frame).
CompCheck3: 0.000 bits/(pixel*frame).
CompCheck5: 0.000 bits/(pixel*frame).
Resolution: 640 x 720
Audio 1:
Mode: Just Mux Source File.
SourceFile: C:\Documents and Settings\traver\Desktop\Test\Record.wav
WavFile: C:\Documents and Settings\traver\Desktop\Test\Record_1.wav
Mp3File: C:\Documents and Settings\traver\Desktop\Test\Record.mp3
OggFile: C:\Documents and Settings\traver\Desktop\Test\Record.ogg
OggQuality: 0.200
OggLanguage: English
Azid:
Lame:
Delay: 0
Interval: 1
Preload: 500
Mux: 1
Recalc: 1
DeleteWav: 1
Audio 2:
none.
06:32:41: Audio 1, determined: 884 kb
06:32:41: Audio 1, calc: 0 kb
06:32:41: New Bitrate for Movie = 5776 k(=1024)Bits/s
Adding this script to C:\PROGRA~1\GORDIA~1\nandub\LastJob.vcf :
// $job "DivX3 First Pass"
// $input "C:\Documents and Settings\traver\Desktop\Test\test.avs"
// $output "C:\Documents and Settings\traver\Desktop\Test\test_Movie.avi"
// $state 0
// $start_time 0 0
// $end_time 0 0
// $script
VirtualDub.Open("C:\\Documents and Settings\\traver\\Desktop\\Test\\test.avs",0,0);
VirtualDub.audio.SetSource(0);
VirtualDub.audio.SetMode(0);
VirtualDub.audio.SetInterleave(1,0,0,0,0);
VirtualDub.audio.SetClipMode(1,1);
VirtualDub.audio.SetConversion(0,0,0,0,0);
VirtualDub.audio.SetVolume();
VirtualDub.audio.SetCompression();
VirtualDub.audio2.SetSource(0);
VirtualDub.audio2.SetMode(0);
VirtualDub.audio2.SetInterleave(1,0,0,0,0);
VirtualDub.audio2.SetClipMode(1,1);
VirtualDub.audio2.SetConversion(0,0,0,0,0);
VirtualDub.audio2.SetVolume();
VirtualDub.audio2.SetCompression();
VirtualDub.video.SetDepth(24,24);
VirtualDub.video.SetMode(1);
VirtualDub.video.SetFrameRate(0,1);
VirtualDub.video.SetIVTC(0,0,-1,0);
VirtualDub.video.SetRange(0,0);
VirtualDub.video.SetDivX(6000,9999);
VirtualDub.video.SetQualityControl(0,0,0,0);
VirtualDub.video.SetMotionDetection(8,10,300,300);
VirtualDub.video.SetCrispness(0,0);
VirtualDub.video.SpaceKF(24);
VirtualDub.video.InternalSCD(100);
VirtualDub.video.SetMinKBPS(270);
VirtualDub.video.SetCurveFile("");
VirtualDub.video.SetCurveMcFactor(0);
VirtualDub.video.SetCurveCompression(0,0);
VirtualDub.video.SetCurveFilter(0,9999);
VirtualDub.video.SetCurveCredits(0,350);
VirtualDub.video.SetLumaCorrectionAmp(0,10,30);
VirtualDub.video.SetCurveRedist(0);
VirtualDub.video.SetCompLevelsMain(2,2);
VirtualDub.video.SetCompLevelsA(300,2,16);
VirtualDub.video.SetCompLevelsB(300,2,16);
VirtualDub.video.SetCompLevelsC(300,2,16);
VirtualDub.video.SetCompLevelsD(300,2,16);
VirtualDub.video.SetCompLevelsE(300,2,16);
VirtualDub.video.SetCompLevelK(2,4);
VirtualDub.video.SetBitsReservoir(0,100,0,100,45,100);
VirtualDub.video.SetLowBrCorrection(0,0);
VirtualDub.video.NoAVIOutput(1);
VirtualDub.video.GenStats("C:\\Documents and Settings\\traver\\Desktop\\Test\\test.stats",1);
VirtualDub.video.SetEncodingControl("");
VirtualDub.video.filters.Clear();
VirtualDub.subset.Delete();
VirtualDub.SaveAVI("C:\\Documents and Settings\\traver\\Desktop\\Test\\test_Movie.avi");
VirtualDub.Close();
// $endjob
//
//--------------------------------------------------
// $done
06:32:41: Started DivX3-First Pass: C:\Documents and Settings\traver\Desktop\Test\test.avs
06:32:52: Finished DivX3-First Pass: Duration: 10 seconds.
06:32:52: *************************************
06:32:52: EXCEPTION: I/O error 103
06:32:52: EXCEPTION: Encoder Thread Terminated.
06:32:52: *************************************
Total Encoding Time: 10 seconds.
18-08-2005 06:32:52: Job " 1 - test.avi" finished.
_______________________________________________________________________________________________________________________
jellysandwich
19th August 2005, 22:07
but when I get this error..
nandub error
avisynth open failure
Evaluate:unrecognized exception!
(c:\Film\test.avs, line49)
Post your avs script please.
js
setarip_old
21st August 2005, 00:40
I got a single VOB file, that I need to convert into avi.
You should be able to load it DIRECTLY into VirtualDubMOD (Different than standard VirtualDub) for conversion to .AVI...
bongoman31
22nd August 2005, 14:46
Also, Auto Gordian Knot does this nicely. Don't need IFO's.
tigerman8u
24th August 2005, 16:40
for a single vob virtualdub mod (as stated above) or virtualdub mpeg2. load the vob apply any filters if need be choose your encoder or save to uncompressed avi.
stl
26th August 2005, 17:50
check out this link:
http://www.avi-mpeg-converter.net/
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.