I told myself I was going to hold off on doing the Simpsons as I spent so long doing the Futurama episodes, though a lot of that was down to me learning the programs really. But, I couldn't resist and did a quick snippet of the Simpsons pilot, and honestly the output is transformative. I need to sit down and rip them all now! I only have up to season 6, and being in the UK getting NTSC copies of the DVDs isn't always the easiest, but I'll at least make a start.
And thank you you checking that for me. Looking at the DVD, I think it's simply due to the sources and that nothing can be done - horizontal scrolling just doesn't really play nicely with interlaced content, if you take a look at this frame, specifically the stars, you can see where the problem comes from:
[Attachment 75046 - Click to enlarge]
The encodes are such a huge improvement, I just was worried I'd messed them up somehow!
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
+ Reply to Thread
Results 121 to 131 of 131
Thread
-
-
Encoding video such that the improvement is drastic has to be some kind of gateway drug .
-
"Lingering" seems creepy--what's wrong with keeping a tab open!?; everybody's doing it!--and my memory won't win any awards, but I seem to remember that you'd sorted out your script and were good to go. What can I do to help?
-
Haha, now you mention it that does sound worse than I intended!
Since I wrote that I have managed to re-teach myself some things. I have your copy of MeGUI still and I couldn't for the life of me figure out how to get plugins etc working again...that's no longer a problem and I've actually managed to re-encode all of season 1.
However! Did you ever figure out a way of speeding up the process of this all? Between splitting up the original MKV file, separating out the m2v that I need, indexing it, converting it and then putting it all back together as one MKV it takes me many, many hours per season. I wonder if you ever had any success with the methods that keep it was one MKV file? Or alternatively the OneClick encoder? I actually had a look at this and had some success, but my method required all episode files in the same folder to process, which is a nightmare for then splitting them into different folders and adding back in the audio later...
I'm rambling, season 2 is processing as we speak at least! -
Given that several of the required plugins for interlaced DVD's aren't built for multithreading, the best way I found to improve encoding speed was to load an even number of files to MeGUI for processing, then send them to as many separate drives as my computer has cores; for example, on my quad-core computer I'll load 4, 8, 12, 16 (any multiple of 4) files then send one fourth of the files to four different drives (internal and external, any combination) using the main MeGUI worker plus three temporary workers.
To make other processes, like (de)muxing and the such, more efficient I use the search program Everything to load multiple files to MKVToolNix, MeGUI, MKVCleaver, etc.; I have the GUI's on the left of my screen and the Everything window on the right, so that I can search the folder tree where my source files are located then select only the .mkv or .srt or .whatever files to drag-drop onto the GUI's. I tried to use the OneClick encoder when I first started using MeGUI, but quickly found it much too annoying (but that's just me). -
Yeah, actually processing through MeGUI takes the longest in terms of time, but at least with some temporary workers I can just set and go. That at least seems to work well, if time consuming.
Great shout on Everything. That works so well, especially for MKVCleaver. I keep each episode in it's own folder so it's easier to manage once split, and being able to drag/drop them all is a lifesaver.
Here's another question then, for MKVtoolnix, when remuxing the files back together, how do you manage to label the tracks and set the default flags efficiently? Or do you not bother? I actually was able to use the command line to do it once for season 2 but that's only because that season only contains two sets of audio and one set of subtitles so you can just blanket name them. Is it really a case of otherwise going through each one?
Thank you! -
I need more cores, ha ha.
I find Everything indispensable.
I also have each episode in its own folder within a specific season folder within a main Simpsons folder. I've MKVToolNix set to name the output the same as the first file input; so, I'll add the properly named subtitle first, then add files via the right-click option; having the encoded video and the audio(s) in the same folder as the subtitles makes this easier. Then I queue as many episodes as necessary and run the batch. I don't name the tracks unless there's more than one audio, and when there is I copy-paste using Ctrl-V for "EnglishAudio" and an AutoHotkey combo for "Commentary". It's very tedious, but I'm basically clueless when it comes to command line use. I'd bet there's a way to batch name in MKVToolNix if you've the time to figure it out.Last edited by LouieChuckyMerry; 29th Nov 2024 at 00:41.
-
So, I don't know if this will be any help whatsoever to you, but I have found a way using Powershell to automate the remuxing processing. Essentially what this will do is:
Code:Scans all subfolders in D:\Video\Final folder. Skips folders named output (to avoid re-processing). Looks for: Video file: *_Track01.mkv. Audio files: At least one .ac3 file. Optional subtitle file: *.srt. Warns and skips if any required files are missing. Creates an output folder inside each subfolder. Merges detected files using mkvmerge: Labels first audio as "English 5.1". Labels extra audio as "Commentary" or "Commentary - X". Labels subtitle as "English - Subtitles". Saves the final .mkv in the output folder. Result: A clean, merged .mkv file for every properly structured folder.
Anyway this is the script:
Code:# Base folder containing all the subfolders $BaseFolder = "D:\Video\Final folder" $MKVToolNixPath = "D:\Video\mkvtoolnix\mkvmerge.exe" # Loop through each subfolder recursively Get-ChildItem -Path $BaseFolder -Recurse -Directory | Where-Object { $_.Name -ne "output" } | ForEach-Object { $Folder = $_.FullName Write-Host "Processing folder: $Folder" # Dynamically detect file paths in the subfolder $VideoFile = Get-ChildItem -Path $Folder -Filter "*_Track01.mkv" | Select-Object -ExpandProperty FullName -ErrorAction SilentlyContinue $AudioFiles = Get-ChildItem -Path $Folder -Filter "*.ac3" | Select-Object -ExpandProperty FullName -ErrorAction SilentlyContinue $SubtitleFile = Get-ChildItem -Path $Folder -Filter "*.srt" | Select-Object -ExpandProperty FullName -ErrorAction SilentlyContinue # Skip if the video file is missing if (-Not $VideoFile) { Write-Warning "Skipping $($Folder): Video file missing" return } # Skip if no audio files are detected if (-Not $AudioFiles -or $AudioFiles.Count -lt 1) { Write-Warning "Skipping $($Folder): No audio files detected" return } # Warn if no subtitle file is detected if (-Not $SubtitleFile) { Write-Warning "No subtitle file found in $Folder. Continuing without subtitles." } # Determine the output folder and file name $OutputFolder = Join-Path $Folder "output" if (-Not (Test-Path $OutputFolder)) { New-Item -ItemType Directory -Path $OutputFolder | Out-Null } $BaseOutputName = (Get-Item $VideoFile).BaseName -replace "_Track01$" $OutputFile = Join-Path $OutputFolder "$BaseOutputName.mkv" # Build the mkvmerge command $Command = @( "-o", $OutputFile, $VideoFile ) # Process audio tracks for ($i = 0; $i -lt $AudioFiles.Count; $i++) { $AudioTrack = $AudioFiles[$i] $TrackLabel = if ($i -eq 0) { "English 5.1" } elseif ($i -eq 1) { "Commentary" } else { "Commentary - $([int]$i)" } $Command += @( "--default-track", "0:" + ($i -eq 0 ? "yes" : "no"), "--track-name", "0:$TrackLabel", "--language", "0:eng", $AudioTrack ) } # Add the subtitle track if available if ($SubtitleFile) { $Command += @( "--default-track", "0:no", "--track-name", "0:English - Subtitles", "--language", "0:eng", $SubtitleFile ) } # Run the command and capture output Write-Host "Running mkvmerge..." & $MKVToolNixPath @Command | Write-Host Write-Host "Successfully processed: $OutputFile" } Write-Host "All folders processed."
-
Basically it's a script for MKVToolNix (well, MKVMerge). It'll batch mux the files rather than you having to do it manually. You would just need to set the folders you want to use, and any parameters. For example, I've got it set so that any audio streams beyond the first are labelled with Commentary.
Similar Threads
-
Encoding PC build in progress. Suggestions?
By louv68 in forum ComputerReplies: 15Last Post: 14th Jan 2013, 08:55 -
Need help optimizing video clips and software tips
By p1er in forum Newbie / General discussionsReplies: 6Last Post: 20th Aug 2012, 18:07 -
Optimizing audio using a Canon Vixia HF100 with external mic
By Michiko280 in forum AudioReplies: 30Last Post: 23rd Feb 2012, 14:02 -
Optimizing Settings for youtube upload like fast start etc for x264 encoder
By vibes992000 in forum Video Streaming DownloadingReplies: 2Last Post: 6th Feb 2012, 00:30 -
New to tbc - need advice on optimizing Panasonic svhs ag1970 w/tbc
By yoda313 in forum Capturing and VCRReplies: 8Last Post: 15th Jan 2011, 10:43