PDA

View Full Version : .avi file abruptly stops on my Oppo OPDV971H DVD Player


slamali
25th October 2006, 05:26
Dear friends,
I am new to the forum, did a lot of search for my problem. Could'nt find the solution and so requesting all you geniuses to help me out.
I have tried converting many Dvd's,was succesful, got the desired result and quality output. But on burning the same on Dvd-R and playing on my Oppo OPDV971H DVD Player (which is a Mpeg 4 player with latest fimware updated), the movie runs for some time and then abruptly stops. I know am commiting a mistake in conversion. Putting my log file. Pls help.
[10/24/2006 1:53:02 PM] AutoGK 2.20
[10/24/2006 1:53:02 PM] OS: WinXP (5.1.2600).2
[10/24/2006 1:53:02 PM] Job started.
[10/24/2006 1:53:02 PM] Input file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_0.IFO
[10/24/2006 1:53:02 PM] Output file: D:\Movies\A Film by Arvind\VIDEO_TS\A Film by Arvind.avi
[10/24/2006 1:53:02 PM] Output codec: XviD
[10/24/2006 1:53:02 PM] Audio 1: Telugu DTS 5ch
[10/24/2006 1:53:02 PM] Subtitles: none
[10/24/2006 1:53:02 PM] Format: .AVI
[10/24/2006 1:53:02 PM] Target size: 2040Mb
[10/24/2006 1:53:02 PM] Custom audio settings: Original
[10/24/2006 1:53:02 PM] Standalone support enabled: MTK/Sigma
[10/24/2006 1:53:02 PM] Started encoding.
[10/24/2006 1:53:02 PM] Demuxing and indexing.
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_1.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_2.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_3.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_4.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_5.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_6.VOB
[10/24/2006 2:04:13 PM] Processing file: D:\Movies\A Film by Arvind\VIDEO_TS\VTS_01_7.VOB
[10/24/2006 2:04:13 PM] Source resolution: 720x480
[10/24/2006 2:04:13 PM] Found NTSC source.
[10/24/2006 2:04:13 PM] Source aspect ratio: 16:9
[10/24/2006 2:04:14 PM] Color correction enabled.
[10/24/2006 2:04:14 PM] Analyzing source.
[10/24/2006 5:54:28 PM] Source has percentage of interlacing in motion areas: 58.05
[10/24/2006 5:54:28 PM] Source has percentage of telecined patterns: 7.13
[10/24/2006 5:54:28 PM] Source has percentage of progressive patterns: 9.94
[10/24/2006 5:54:28 PM] Source has percentage of interlaced patterns: 82.93
[10/24/2006 5:54:28 PM] Source is considered to be hybrid (mostly NTSC).
[10/24/2006 5:54:28 PM] Looking for optimal hybrid thresholds.
[10/24/2006 5:54:52 PM] Found threshold of: 1.72
[10/24/2006 5:54:52 PM] Forcing normal IVTC method.
[10/24/2006 5:54:52 PM] Output will contain 195060 frames
[10/24/2006 5:54:52 PM] Audio1 size: 765,748,086 bytes (730.27 Mb)
[10/24/2006 5:54:52 PM] Overhead: 1,355,904 bytes (1.29 Mb)
[10/24/2006 5:54:52 PM] Video size: 1,371,991,050 bytes (1308.43 Mb)
[10/24/2006 5:54:52 PM] Running compressibility test.
[10/24/2006 5:54:52 PM] Writing the following script to D:\Movies\A Film by Arvind\VIDEO_TS\agk_tmp\A Film by Arvind_comptest.avs
===========================================================
LoadPlugin("d:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\decomb.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\ColorMatrix.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")

movie = mpeg2source("D:\Movies\A Film by Arvind\VIDEO_TS\agk_tmp\A Film by Arvind.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.18518518518519
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
Telecide(movie,order=1,guide=1,post=2).Decimate(mode=0)
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",mmx=true,hints=false)
SelectRangeEvery(300,15)
===========================================================
[10/24/2006 6:03:51 PM] Duration was: 8 minutes 58 seconds
[10/24/2006 6:03:51 PM] Speed was: 18.12 fps.
[10/24/2006 6:03:51 PM] Compressibility percentage is: 23.36
[10/24/2006 6:03:51 PM] Using softer matrix.
[10/24/2006 6:03:51 PM] Using softer resizer.
[10/24/2006 6:03:51 PM] Chosen resolution is: 528x240 ( AR: 2.20 )
[10/24/2006 6:03:51 PM] Predicted comptest value is: 57.35
[10/24/2006 6:03:51 PM] Running first pass.
[10/24/2006 6:03:51 PM] Writing the following script to D:\Movies\A Film by Arvind\VIDEO_TS\agk_tmp\A Film by Arvind_movie.avs
===========================================================
LoadPlugin("d:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\decomb.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\ColorMatrix.dll")
LoadPlugin("d:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")

movie = mpeg2source("D:\Movies\A Film by Arvind\VIDEO_TS\agk_tmp\A Film by Arvind.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.18518518518519
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 = 528
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
Telecide(movie,order=1,guide=1,post=2).Decimate(mode=0)
autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
BicubicResize(out_width,out_height,0,0.5)
RemoveGrain(mode=2)
ColorMatrix("Rec.709->Rec.601",mmx=true,hints=false)
===========================================================
[10/24/2006 7:50:09 PM] Duration was: 1 hour, 46 minutes 18 seconds
[10/24/2006 7:50:09 PM] Speed was: 30.58 fps.
[10/24/2006 7:50:10 PM] Expected quality of first pass size: 62.85
[10/24/2006 7:50:10 PM] Running second pass.
[10/24/2006 9:33:09 PM] Duration was: 1 hour, 42 minutes 59 seconds
[10/24/2006 9:33:09 PM] Speed was: 31.57 fps.
[10/24/2006 9:33:09 PM] Job finished. Total time: 7 hours 40 minutes 7 seconds

setarip_old
25th October 2006, 07:36
Hi!But on burning the same on Dvd-R and playing on my Oppo OPDV971H DVD Player (which is a Mpeg 4 player with latest fimware updated), the movie runs for some time and then abruptly stops.This sounds more like you have a burning and/or media compatibility problem...

manono
26th October 2006, 10:16
Welcome to the forum-

I agree with setarip_old. I have the same Oppo and haven't seen the problem to which you refer. Are you burning to DVDR, or splitting and burning to CDR? I haven't burned to DVDR, but isn't there a 2 GB limit to AVI sizes for these players? This particular AVI should get nearly to the end, though.

And you forced an IVTC when clearly that's an improper thing to do for this video? Doesn't it play jerky? I'd almost bet that this is a PAL2NTSC job, complete with field blends, but I'd have to see a sample of the source to be sure. If it is, AutoGK can't handle it properly.

And you wanted to keep the DTS track, even though its size meant lower quality for the video?