Here the script I have been using:
The script can be directly loaded and executed in DVDStyler.Code:AviSource("Original Sample.avi") #or use your preferred source filter AssumeTFF() QTGMC(preset="fast") #double-rate deinterlacing for subsequent non-interlaced-aware denoising filter MCDegrainSharp() #denoising SeparateFields().SelectEvery(4,0,3).Weave() #re-interlacing for DVD PAL compliance ConvertToYV12(interlaced=true) #prepare for the final mpeg2 encoder of DVDStyler
Closed Thread
Results 31 to 60 of 141
-
Last edited by Sharc; 23rd Dec 2023 at 12:58.
-
Bwaak,
When I referred to 25fps, I was referring to 25fps being the only progressive-scan format natively supported for a PAL DVD. Likewise it'd be 30fps progressive for NTSC, at least as far as I know. https://en.wikipedia.org/wiki/DVD-Video#Video_data
Other frame rates can be wrapped into the PAL or NTSC field rates using repeat flags, as you said. I'm not sure why DVD Architect wouldn't accept a 24fps video, given 2:3 pulldown is such a common thing.
24fps can be wrapped into PAL's 50 fields per second with a 2:2:2:2:2:2:2:2:2:2:2:3 telecine pattern instead of speeding it up, but I think the only time I've seen it used has been for DVDs containing concert footage etc, where it'd be undesirable to increase the frame rate due to having to increase the audio speed and/or pitch to match.
I'm not sure about the distinction between 24F and 24P, although the former sounds like it might be a progressive segmented frame.
Here's a DVD review from 2002 when progressive scan DVD players were all new and shiny. It shows an example of the DVD player switching from ignoring repeat flags to de-interlacing hard telecine instead of applying pulldown removal. At least I think that's what the problem was.
https://hometheaterhifi.com/volume_9_2/mrg-87-june-2002.html#A%20Beautiful%20MindLast edited by hello_hello; 23rd Dec 2023 at 14:11.
Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview)
-
It is the other way around: it accepted it, and did not re-encode it for DVD, used as is. On the other hand, it did re-encode my native 25p MPEG-2 file.
No, one is native (or interlaced with flags, so treated as native), another is 24-in-60 without flags, so treated as interlaced. 30p and 25p were PsF. I don't think there have ever been a consumer camcorder that could do 24 PsF.
-
Can you lot stay on topic. Ferrari is obviously a newby and needs basics only. In my assessment, that won't be AVISynth.
Originally Posted by Lordsmurf
-
DVDStyler: Wow!
Here's my attempt. I deinterlaced, cropped and resized to 768x576 in VDub2 (as per my guide here), saved as a Lagarith AVI (for something different), then imported it into DVDStyler. No denoising or other enhancements.
After download, change the extension from ZIP to ISO, then right-click>Open With VLC Player. I'm not at my big TV so can't see the result on it but it looks ok on my 'puter.
The forum should enable ISO uploads.
-
Originally Posted by Skiller
Giving it an Interlaced AVI or MPEG 2 (from handbrake) didn't work well; the interlacing looks like it got burned-in on the ISO.
Originally Posted by Skiller
-
Yes, according to DVD specs (Although I doubt that hobbyist do have these for USD 5'000 and signing an NDA).
I have seen commercial "NTSC" DVD's 30p flagged as progressive, but I have never come across commercial 25p DVDs flagged as progressive. Progressive footage has always been in the 25 PsF format and flagged as interlaced. 25p progressive flagged "PAL" DVD's were all home-brewed. This only reflects my limited experience of course, and might be wrong. I didn't analyze all Bollywood productions ...
I think the label "NTSC" or "PAL" on the discs and packages should actually exclude progressive encoding+flagging because "NTSC" and "PAL" are TV broadcast standards which are interlaced only.
-
Absolutely. Why butcher it by deinterlacing to 25p (and 50p is not DVD compliant).
The main problem of Ferrari420 was the wrong field order (initially), and that he wanted to put 2hours29minutes of noisy and shaky home-video capture footage onto a DVD-5, encoded as mpeg2 for DVD compliance. The macroblocking festival (even Canopus Procoder would have a problem with this) or bitrate peaks by unconstrained encoding (poor or missing VBV control by the encoder) causing stutter became unavoidable.Last edited by Sharc; 24th Dec 2023 at 02:18.
-
Why all this complication? Why resizing to square pixels? Just to let DVDStyler resize it again to non-square (DVD compliant) pixels?
You can crop directly in DVDStyler btw. You may have to pay attention to do the cropping interlace compliant though. (Maybe DVDStyler does it correct by itself, I didn't test).
-
[QUOTE]To be blunt, in order to be as clear as possible here:
If you want to make shitty quality video, you can certainly do so. I just hope I never have to watch your butchered video. In fact, I won't watch such crap, I'll move on to something else. That's how most people feel, though some will "be nice"/coddle your feelings about it, give the lip service, then turn it off when you're gone/QUOTE]
I bet the guy is glad now he never clicked on and asked for help from Lord S. That said sometimes you have to be cruel to be kind eh. Yo Ho Ho!Last edited by Anonymous5394; 24th Dec 2023 at 05:03.
-
Originally Posted by Sharc
Originally Posted by Sharc
I note you didn't resize in your script; why did DVDStyler correctly resize that and not the original AVI?
-
99%+ of the time, what you just stated is BS.
All of my videos suffer from pixelation which is probably due to my Panasonic DMR-EH55,
that price scalpers are now selling for $300 (I got mine for $30 and was incredibly lucky).
If that looks like crap then there's little that I can do about it.
It's the holidays. And you are not my priority, I don't owe you anything.
No, it's 100% correct for PAL.
Oh, FFS.
Must we all walk on eggshells, in order not to hurt the feeling of people that are making mistakes, spout false info, are not cooperative, and then cop an attitude when called out on it? Really?
No.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
-
Why? Usually not by reducing 25i to 25p for shaky home video. DVDStyler was just smart enough not to output 50p for DVD compliance, so you ended up with the 'stroboscopic' 25p. Technically doable, but not recommended.
(If you absolutely wanted 25p you could add motion blur using QTGMC(.....) in order to reduce the stroboscopic look.)
Originally Posted by Alwyn
Originally Posted by SharcOriginally Posted by AlwynLast edited by Sharc; 26th Dec 2023 at 01:38.
-
Code:
AssumeTFF() QTGMC(preset="fast") #double-rate deinterlacing for subsequent non-interlaced-aware denoising filter MCDegrainSharp() #denoising SeparateFields().SelectEvery(4,0,3).Weave()
Because one the frame generated by the deinterlacer is discharged, and to be more accurate on the source processing, you can use QTGMC(lossless=1) instead of QTGMC(preset="fast"), which preserves intact the original field.
-
Last edited by Bwaak; 26th Dec 2023 at 14:18. Reason: than -> then
-
Thanks they are provided by on eof those rare TV show providers, the quality is good to very good, am just usin ghandbrake to get them to mkv, again pleased overall. And you could be right that they were created using simple straightforward a/d converters of some sort.
PAL/NTSC problem solver.
USED TO BE A UK Equipment owner., NOW FINISHED WITH VHS CONVERSIONS-THANKS
-
Well I have been away for some days.
At least we now have a sample. So thank you for that. Whilst it may not make any difference, you were also asked for the detail of your entire capture workflow. Who knows, the actual capture device may be the 'villain' here.
But I would agree that 2hours 30 is too much for a single-layer dvd however you swing it. But you can still get reasonable results at 2 hours.
-
Reasonable results? Hmmm.... With re-encoding already compressed DVD footage yes, but more difficult and demanding for shaky and noisy VHS home video captures. May require too much denoising producing wax pictures and/or annoying encoding artifacts. It's still mpeg2 only for DVD. Better chances would be with AVC/HEVC/mpeg4.
Last edited by Sharc; 27th Dec 2023 at 13:50.
-
Just for the sake of adding to this side discussion, masking overscan always helps, NR helps, and halving to 352 Half D1 helps. Bitrate is not a pure measure, but one of allocation. You can easily fit semi-noisy Half D1 masked with some NR to achieve a watchable DVD.
That's not at all what we have in this thread ... but it's completely possible.
(You, selur, surely know this. I'm educating anybody else that does not yet know how MPEG encoding works, or the DVD-Video specs.)Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
-
Originally Posted by Ferrari
There is only a difference if the MSU Denoiser filter is turned off and on.
Another filter which may help is Camcorder Color Denoiser. Down the page a bit.
Similar Threads
-
Device that turns 30P video into 60i output - which deinterlacing method?
By daygecko in forum Capturing and VCRReplies: 36Last Post: 28th Jan 2022, 13:21 -
Problem deinterlacing AVI file dubbed from VHS
By crbd98 in forum RestorationReplies: 8Last Post: 12th Mar 2021, 11:42 -
What deinterlacing method to choose?
By FlyingAces in forum Video ConversionReplies: 19Last Post: 24th Sep 2020, 18:53 -
Deinterlacing and converting VHS animation
By IvynaJSpyder in forum Newbie / General discussionsReplies: 6Last Post: 3rd Sep 2020, 23:01 -
Learn about the same deinterlacing method
By hintlou in forum DVD RippingReplies: 15Last Post: 3rd Apr 2020, 23:04