If you tell DgIndex not to use full paths you can move the entire folder without changing the d2v. In DgIndex the option is at Options -> Use Full Paths. Open a d2v file with Notepad and you'll see whether the full path is specified or only the filename. You can also use Notepad to change the name/path if necessary.
		
			+ Reply to Thread
			
		
		
		
			 
		
			
	
	
				Results 31 to 33 of 33
			
		- 
	Last edited by jagabo; 8th Sep 2013 at 09:39. 
- 
	Thanks I'll do that RGB conversion in avisynth. 
 
 { Reason why I was converting to RGB was because for some reason even with doing the color to pc to tv, it still wouldn't play back as bright as when doing YUV.
 A bit tired at the moment so I will post the examples later.}
 
 Real reason I had converted that file with higher than 150 on this {ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch} so was expecting a bighter video than I got as I later proved.
 
 
 -EDIT - Converted one video I took at night with the fine settings (30fps)
 
 1st file (MOV09487_Color Fix_Only.avi - 1.58gb) , Ran this avs script, with no color conversion or no compression in VirtualDub
 ThumbnailsCode:vid = MPEG2Source("H:\My Videos\z Work In Progress\MOV09487.d2v") aud = WAVSource("H:\My Videos\z Work In Progress\MOV09487.wav") AudioDub(vid, aud) ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 return last # <- Be sure to include this statement at the end!)
 
 
 2nd file (MOV09487_Color Fix_RGB_Vd_only.avi - 3.15gb) , Ran this avs script, with Virtualdub RGB(888) color conversion with no compression
 ThumbnailsCode:vid = MPEG2Source("H:\My Videos\z Work In Progress\MOV09487.d2v") aud = WAVSource("H:\My Videos\z Work In Progress\MOV09487.wav") AudioDub(vid, aud) ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 return last # <- Be sure to include this statement at the end!)
 
 
 3rd file (MOV09487_Color Fix_Lagreth_Sanlyn.avi - 224mb) , Ran this avs script, with Saylyn instructions, Lagreth compression in virtualdub only.
 ThumbnailsCode:vid = MPEG2Source("H:\My Videos\z Work In Progress\MOV09487.d2v") aud = WAVSource("H:\My Videos\z Work In Progress\MOV09487.wav") AudioDub(vid, aud) ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 return last # <- Be sure to include this statement at the end!)
 
 
 4th file (MOV09487_Color Fix_RGB_avisynth.avi - 4.2gb) , Ran this avs script, with no compression or color change in Virtual Dub.
 ThumbnailsCode:vid = MPEG2Source("H:\My Videos\z Work In Progress\MOV09487.d2v") aud = WAVSource("H:\My Videos\z Work In Progress\MOV09487.wav") AudioDub(vid, aud) ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 ConvertToRGB32(matrix="PC.601",interlaced=false) #YUV to RGB return last # <- Be sure to include this statement at the end!)
 
 
 5th file (MOV09487_Color Fix_RGB_avisynth_Lagreth.avi - 265mb) , Ran this avs scrypt, with lagreth compression set to RGB in virtualdub with no color change.
 ThumbnailsCode:vid = MPEG2Source("H:\My Videos\z Work In Progress\MOV09487.d2v") aud = WAVSource("H:\My Videos\z Work In Progress\MOV09487.wav") AudioDub(vid, aud) ColorYUV(gamma_y=150, cont_u=150, cont_v=150) # gamma and saturation stretch ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 ConvertToRGB32(matrix="PC.601",interlaced=false) #YUV to RGB return last # <- Be sure to include this statement at the end!)
 
 
 Going to stick with the YV12 and lagreth compression for now, have not yet tired to edit the files in a video editor yet.
 
 -Been working on getting all this to batch out so I just have to run batch steps not per file.
 
 AviSynth Batch Scripter -- Found this to batch make .avs files
 Found this to batch load the .avs files to virtualdub http://sourceforge.net/projects/virtualdubbatch/
 
 -EDIT
 Figured out how to batch process to get .wav, just open VirtualDub.jobs after useing virtualdubbatch, and find "AVI" and replace with "WAV", and there done, then Open virturaldub and start batch.
 
 Just found out how to batch dgIndex, From searching online it could supposedly do it from the command line options http://forum.doom9.org/showthread.php?p=1087634
 
 Save file as dgIndex.cmd
 Any other options I should put in for dgindex? http://neuron2.net/dgmpgdec/DGIndexManual.html#AppendixBCode:for %%f in (*.MPG) do start "DGINDEX" /wait "D:\Program Files\AviSynth 2.5\plugins\DGIndex.exe" -IF=[%%f] -OF=[%%~nf] -OM=0 -IA=5 -EXIT 
 
 Also Should I resample all the audio to 48000hz? from 32000hz in Audacity before recombining in to the avi?Last edited by g6qwerty; 9th Sep 2013 at 05:36. Reason: Finaly Figured Batch processing out Hurray!!! 
- 
	What would be the best way to go about RGB color space so I can use the Lightworks video editor, since windows movie maker is horrid at working with the huge files. 
 
 Had a video I wanted to make that had like 23 separate files, unedited just make into one video and windows movie maker would crap out on me. It would drop video or audio, or both.
 
 This is what I am using currently to Get Video to import into lightworks free, with no loss of color range.
 Is their a better Format to Convert to for Lightworks Import?Code:vid = MPEG2Source("%PATH%\%CLIP%.d2v") aud = WAVSource("%PATH%\%CLIP%.wav") AudioDub(vid, aud) ColorYUV(levels="PC->TV") # a close alternate would be cont_y=-32 ConvertToRGB24(matrix="PC.601",interlaced=false) #YUV to RGB return last # <- Be sure to include this statement at the end!)
 
 Import formats: Lightworks Pro and Free
 
 DVCAM / DVCPRO 25
 DVCPRO 50
 DVCPRO HD
 Uncompressed SD 8 bit and 10 bit
 Uncompressed HD 8 bit and 10 bit
 MPEG-2 I-Frame SD
 MPEG-2 I-Frame HD
 MPEG-2 Long GOP
 IMX 30, 40, 50
 AVCHD (M2T, M2TS, MPEG4, H.264)
 Avid DNxHD – all variants, including Thin Raster**
 AVC-Intra 50
 AVC-Intra 100
 XDCAM EX (native MP4 support)
 XDCAM HD
 XDCAM HD 50 422
 Apple Pro Res
 RED R3D
 DPX 8 bit, 10 bit, 16 bit
 Image Sequence (BMP, DPX, JPEG, PNG, TGA, Compressed TGA, TIFF)
 Broadcast Wave Format with drop and non-drop frame timecode optionsLast edited by g6qwerty; 19th May 2014 at 14:58. 
Similar Threads
- 
  Convert MKV to AVI/MPEG-2 High Quality file for HD authorBy ronorkis in forum Video ConversionReplies: 7Last Post: 1st Nov 2010, 09:23
- 
  How to convert just top/bot field of an interlaced mpeg-2 video to mpeg-1 ?By vahid in forum Video ConversionReplies: 4Last Post: 19th Oct 2010, 03:26
- 
  Stream an MPEG file over UDP as MPEG-TS and convert back to MPEG.By Tengil123 in forum Video Streaming DownloadingReplies: 0Last Post: 27th Nov 2009, 05:40
- 
  Which format produces better quality overall MPEG-2, MPEG-4 or .x264?By Canon GL-2 Guy in forum Newbie / General discussionsReplies: 8Last Post: 31st Aug 2009, 04:00
- 
  Convert AVI to MPEG-1 without losing quality: What tool?By GeekyChocolate in forum Video ConversionReplies: 8Last Post: 28th Mar 2009, 17:42


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			


 Quote
 Quote