Hi.
I have a collection of tv show, 22 dvds.
It's old, and doesn't look good even untouched.
It's 1987 Married with Children.
I was thinking to passthrough audio and code video in DVDFab 2-pass.
I tried 500kbps, 1000kbps, 1500kbs, honestly the difference isn't much.
What do you think?
I don't want to keep it in MPEG2 - 1 Gigabyte per episode, it's a waste of hard drive, may as well buy a dvd player.
So... how'd you do it?
+ Reply to Thread
Results 1 to 13 of 13
-
-
Cut out a small clip (30 seconds or so) showing steady movement and post it here
https://forum.videohelp.com/threads/355958-Ghosting-Issue-Frame-Blending#post2240879 -
Here are my source files
https://drive.google.com/drive/folders/1Qoh-GTQ8WfYbbB8CoEuPjSA1AAhMsw2o?usp=sharing
Please check both first and last, there's 11 years of difference in technology -
Here are my source files
https://drive.google.com/drive/folders/1Qoh-GTQ8WfYbbB8CoEuPjSA1AAhMsw2o?usp=sharing
Please check both first and last, there's 11 years of difference in technology -
I really don't want to download the whole episode, 30 to 60 seconds is enough.
The forum link I posted in post #2 above is a pointer to a post that shows you how to cut out some of your file
not the thread I wanted you to post in! -
MWC DVDs were starved for bitrate.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
-
I don't know what you find acceptable. This is lower quality than I would encode anything I care about but maybe something like this in AviSynth:
Code:Mpeg2Source("MWC.d2v", CPU2="ooooxx", Info=3) Yadif(mode=1) #QTGMC(preset="fast", EZDenoise=1.0, DenoiseMC=true) if you can afford the CPU usage Crop(6,2,-2,-2) BilinearResize(640,480) MergeChroma(aWarpSharp(depth=5), aWarpSharp(depth=10)) Sharpen(0.5, 0.2)
The first 10000 frames, video only:Last edited by jagabo; 29th Jan 2021 at 20:54.
-
i'd convert to either an iso of the dvd or a straight 1:1 mpeg-2 conversion with no loss of already non-existent quality. if i had to go x264 it would be crf 18 or lower.
--
"a lot of people are better dead" - prisoner KSC2-303 -
Here's an example using ffmpeg in a batch file. You can drag/drop a video onto the batch file to convert it. The new mkv video will have ".x264" added to the end of the filename. For example, MWC.mkv will be converted to MWC.x264.mkv.
Code:"C:\Program Files\ffmpeg64\bin\ffmpeg" -y -i "%~dpnx1" -vf yadif=1,crop=704:572:6:2,scale=w=640:h=480 -c:v libx264 -preset medium -crf 23 -c:a copy "%~dpn1.x264.mkv"
On my computer the full ~23 minute video took less than 2 minutes to convert. Preset medium and crf 23 are the defaults for libx264 but I included them on the command line to make them easy to change for better or worse quality.
The first 10000 frames from the batch file...Last edited by jagabo; 30th Jan 2021 at 11:35.
-
In my experience, x265 doesn't have much advantage over x264 with standard definition frame sizes. It just takes much longer to encode.
Last edited by jagabo; 30th Jan 2021 at 11:26.
-
Main reason for me for x265 with sd is to have 10bit encoding (better compression and banding avoidance) in a main profile and thus better hardware decoding support.
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Another "How do I resize DVDs" thread (square pixels, DAR, PAR)
By sebastiaaan in forum DVD RippingReplies: 7Last Post: 20th Oct 2020, 08:30 -
Will a JVC VCR "Stop" Playback if the video is "too grainy" or degraded?
By timepassenger in forum Capturing and VCRReplies: 8Last Post: 2nd May 2020, 07:17 -
Converting (?) Video "Larger" (Aspect Ratio), (Quality);
By VideoInfo in forum Video ConversionReplies: 4Last Post: 28th Mar 2019, 22:31 -
Why x264 "placebo" preset produce bigger file than "very slow"?
By aleaksunder in forum Video ConversionReplies: 21Last Post: 2nd Mar 2019, 07:25 -
"Drag" transparent images over moving footage with a "mouse"
By theatermajorindistress in forum Newbie / General discussionsReplies: 5Last Post: 8th Jun 2017, 12:48