I recently starting ripping DVD's, at the moment I'm working on an old PAL DVD.
But I've noticed a problem, I'm seeing these kind of horizontal lines when there's movement on the screen, really obvious if you pause it.
To start with I was using EaseFab DVD Ripper and I was advised to try the deinterlacing effect, but that's made no difference.
Next I ripped them with MakeMKV then used Handbrake afterwards, again I used deinterlacing in handbrake, but the results are exactually the same as EaseFab.
Is there a way to solve this problem? It's not that bad, but if there is a fix I want to find it, but on the flip side I don't want to spend hours tearing my hair out over nothing.
With EaseFab and Handbrake, I'm converting them to .mp4.
+ Reply to Thread
Results 1 to 30 of 42
-
-
-
'The Jaggies' ripping/copying should not create this, if it does not already exist on the DVD
-
Sorry, I've had no luck using either of those programs.
But here's a screenshot if that helps.
https://forum.videohelp.com/images/imgfiles/BgCUyY5.jpg -
Not good enough. You opened a VOB in DGIndex and used the [ and ] buttons to isolate a small section (after using the slider to get to the section you want)? If so, what's the problem? You'll have to do better than 'no luck'.
But here's a screenshot if that helps. -
I don't know much about DVD ripping.
Are you saying I need to rip the DVD but keep it in .vob format? How do I go about that? -
The frames are interlaced, top field first, but it's encoded progressive. AssumeTFF().QTGMC() will give you smooth 50 fps video.
-
-
I find it hard to believe that a Red Dwarf DVD would have been incorrectly encoded progressive.
-
-
In future if you see such pattern then you can use some deinterlacer (yadif or similar) - your source is interlace and your display is progressive - on display that is or interlaced or process incoming video trough deinterlacer such pattern as you describe will be not visible.
-
I'm also curious to know if anyone has resolved this particular random ripping issue without resorting to Avisynth post-processing. A simple rip from VOB to MPEG should not (and doesn't usually) require any post work.
Yet, for reasons I cannot fathom, some random dvds have VOB files that play perfectly normally as ripped VOBs, but turn to mis-interlaced, unwatchable crap when simply ripped losslessly into MPEG via a utility like VOB2MPG. It happens on protected or unprotected discs, with or without AnyDVD decrypter running in the background. I'm speaking here of commercially pressed dvds, although I get similar problems when ripping my dvd recorder discs (always).
Been using the (ad-free) VOB2MPG v2.5 utility to do these rips for the past couple years under Win 7 64-bit OS. It works fine for 70% of commercial discs but the other 30% (and all of my dvd recorder discs) result in MPEGs infested with the same horrible interlacing screwup shown in Dead Towel's examples. It seems bizarre, because the VOBs themselves do not show the issue, only when they're ripped to MPEG.
Recently I encountered an additional problem where VOB2MPG could not rip audio from some dvds: the resulting MPEGs had the interlace issue and the audio was pure hash noise. As an alternative, I used MPEG Streamclip to open one of the problem dvds and "Convert To MPEG". To my surprise, it made an MPEG with no interlace error and normal audio. Unfortunately, MPEG Streamclip seems unable to rip an entire dvd at once (it gets hung up on individual "titles" and then you need to go back repeatedly to select the next part, resulting in a multi-part MPEG).
Anyone know if later versions of VOB2MPG overcome the random interlace and audio glitches? Or can recommend another similar utility? -
Been trying to follow a video guide.
Downloaded Avisynth and VirtualDubMod, ripped a dvd as an AVI. Created a text file and opened it in VirtualDubMod, but I'm getting this error message.
Avisynth Open Failure:
AVISource: couldn't locate a decompressor for fourcc MP43 -
That will screw up your video even before your AviSynth script. Rip your DVD as a VIDEO_TS folder. Use DgIndex to build an index file of the movie/episode VOB file(s). Use Mpeg2Source("filename.d2v") in your AviSynth script. This way AviSynth will have access to the original MPEG 2 video on the DVD.
http://www.afterdawn.com/guides/archive/using_dgindex.cfm
You will need to download the DgMpgDec package to get DgIndex.exe and DgDecode.dll. Put the latter in AviSyth's plugins folder. I recommend you use 32 bit versions of everything, AviSynth, filters, VirtualDub(Mod), etc. -
Silly question, sorry I am really clueless, what's the best way to Rip the DVD as a VIDEO_TS folder?
-
Rip means copy
Use a program like dFab , to copy the DVD to your pc as a DVD folder
Conversion to another format is best done after the copy is made
To many people use the word rip to mean both processes done at once
This cause confusion, and in many cases poor quality play files
As you have found out
An old pal video old movies etc
You can try the free program dvdshrink
Set it to 100% copy size aka no shrinking and DVD folder
It will copy the disc to the pc hard drive as folder you can then convert to Avi our another format -
O.k got a little bit further, used dvdshrink to copy the DVD to my hard drive, then used DGindex to create a .d2v. I also copyed over the DgDecode.dll over to Avisynth plugins folder.
I load up VirtualDubMod, but now I'm getting this error message.
Couldn't locate decompressor for format "YV12" (unknown) -
DVD Decrypter is old but still works for most DVDs. Some DVDs will require a more up to date program like DVDFab.
-
Originally Posted by Dead Towel
-
Righto, another little step forward, now it opens the file and I have video! But, no sound.
Also I tried adding the "AssumeTFF().QTGMC()" to the text file, but I got the error message "There is no function named "QTGMC"". -
When you have script problems, show us the complete script. I don't know if you know this or not but QTGMC isn't included in AviSynth - it's a third party add-on. So, you have to get the needed filters and add them to the plugins folder and/or to the script. This page will tell you what you need to get QTGMC going.
...now it opens the file and I have video! But, no sound. -
You have no audio because Mpeg2Source() doesn't include audio, only video. I just mux the extracted AC3 file with the video when I'm done processing. Or you can open the audio in VirtualDub separately via the Audio menu. Or you can use an AC3 import filter in AviSynth if you want -- Nic's AC3 audio source filter.
QTGMC() is a third part filter like DgMpgDec. You must download and install it and all the other filters on which it relies.
http://avisynth.nl/index.php/QTGMC
I recommend you get "Plugin Package with all Requirements" linked to on that page. And follow all the instructions therein. Yes, it's a pain in the ass getting this set up! -
Thanks for the quick reply, I don't have anymore time tonight, but I'll look into the addons for QTGMC and hopefully reply tomorrow.
-
Sorry for being a bit lax, been fighting a cold and been too tired to play around with this after work.
Probably should have mentioned something like this at the start.
My goal is to rip all my DVD's and put them on a hard drive, so that I can watch them through my DVD player. I'm using mp4 at the moment, but my DVD player supports:
MKV, MP4, MPEG2,
Xvid,
JPEG, MPO*,
AAC, ALAC, DSD,
FLAC, MP3, WAV,
WMA
I'm going to have a go at installing QTGMC later on tonight.
Similar Threads
-
Horizontal lines Actioncamera
By Racetrack in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 5Last Post: 3rd Sep 2013, 14:03 -
DVD to MKV fast action horizontal lines using Xmedia Recode
By craigmiles in forum Video ConversionReplies: 2Last Post: 27th Feb 2013, 05:15 -
Remove horizontal lines
By rds11 in forum RestorationReplies: 4Last Post: 5th Nov 2012, 13:10 -
DVD ripped & played on 16:9 TV but with horizontal black lines
By feelart in forum Authoring (DVD)Replies: 5Last Post: 14th Oct 2012, 20:24 -
Horizontal distortion lines
By hyku1147 in forum Newbie / General discussionsReplies: 5Last Post: 27th Nov 2011, 10:02