+ Reply to Thread
Results 61 to 90 of 123
-
-
But in any other DVD authoring, I've heard the audio on any player,windows media player, media Player Classic
And in this case, the final DVD, i listen the audio only with VLC installed.
And in the source file I hear the audio without having VLC, what changed?
The audio file should not be the same?
After all was not only separated first?
I can not risk that, time to move on to the final project, are 150 minutes of video Source to work!Last edited by Caiosouza; 25th Nov 2013 at 12:12.
-
You should make your test MPEG first. There is no point to working 150 minutes of video before your basic procedure hasn't been tested.
Last edited by sanlyn; 19th Mar 2014 at 12:02.
-
But I've done several tests by authoring sample,including your (sample_DVD 6500k_interlaced.mpg), all PC players no audio, only I listen when run with VLC
Do you not think that's weird?
I think I'm doing something wrong in DGIndex
PS : The DVDAuthorGUI is pretty good,thanks!Last edited by Caiosouza; 25th Nov 2013 at 12:46.
-
-
Try adding
Code:MergeChroma(aWarpSharp2(depth=30))
-
jagabo's aWarpSharp2 routine is an old standby among chroma fixers. I started there, too, but ran into complications with the poorly encoded original, especially red. It's shifted left as well as smeared. I finally settled on the routine below. Not 100% perfect -- slight overkill in some scenes, slight underkill in others, but nothing will completely fix low-bitrate damage or VHS chroma smear.
Place this statement at the top of the script, before the script opens the video (change the "path" data to match your system setup):
Code:Import("Drive:\path\to\Avisynth plugins\FixChromaBleeding2.avs")
Code:ColorYUV(cont_y=-10,off_y=1.0) FixChromaBleeding2() ChromaShift(v=4) MergeChroma(aWarpSharp2(depth=30)) MergeChroma(aWarpSharp2(depth=20))
[Attachment 21446 - Click to enlarge]Last edited by sanlyn; 19th Mar 2014 at 12:02.
-
-
The order of the lines isn't absolutely mandatory, but its significance is that each line is a refinement of the line above it. More importantly, you would want to make these corrections before resizing the frame.
First, the ColorYUV statement reduces overall contrast a little (which is more important in other scenes than it is in the sample shot). Then as jagabo suggested and as I often do myself, the statement MergeChroma(aWarpSharp2(depth=30)) is a starting point that "shrinks" the overflow of the color. MergeChroma affects only color, not luma. Often this is enough to make the correction. But it has little effect on the intensity (saturation) of the color or its displacement a few pixels to the left.
So I allowed that statement to remain, but preceded it with something to first correct intensity and give aWarpSharp2 a little help. FixChromaBleeding2 affects the overflow and the intensity to a visible extent. It doesn't affect overflow completely. ChromaShift(V=4) shifts the placement of the red channel toward the right. Because you are working with YUV color, you must shift horizontally by an even number of pixels.
MergeChroma(aWarpSharp2(depth=30)) reduces the overflow even more, on each side of the affected edges. For me, this correction was not quite "narrow" enough, so the statement MergeChroma(aWarpSharp2(depth=20)) works with the more narrow extent of overflow, and narrows it even more. Usually the first aWarpSharp2 would be enough. But I felt that this sample needed a little more refinement.
The original script will therefore look like this:
Code:Import("Drive:\path\to\Avisynth plugins\FixChromaBleeding2.avs") MPEG2Source("Drive:\path\to\project\1992 MX 250 Sample.d2v", CPU=6, Info=3) QTGMC(preset="fast") McTemporalDenoise(settings="low") ColorYUV(cont_y=-10,off_y=1.0) FixChromaBleeding2() ChromaShift(v=4) MergeChroma(aWarpSharp2(depth=30)) MergeChroma(aWarpSharp2(depth=20)) Spline64Resize(width*2, height) Crop(2,10,-6,-16).AddBorders(4,12,4,14) # --- re-interlace AssumeTFF().SeparateFields().SelectEvery(4,0,3).Weave()
Last edited by sanlyn; 19th Mar 2014 at 12:02.
-
I Trying it
Code:
Import("C:\Arquivos de programas\AviSynth 2.5\plugins\FixChromaBleeding2.avs")
MPEG2Source("C:\Documents and Settings\USER\Desktop\WORK FOLDER\1992 MX 250 Sample.d2v", CPU=6, Info=3)
QTGMC(preset="fast")
McTemporalDenoise(settings="low")
ColorYUV(cont_y=-10,off_y=1.0)
FixChromaBleeding2()
ChromaShift(v=4)
MergeChroma(aWarpSharp2(depth=30))
MergeChroma(aWarpSharp2(depth=20))
Sharpen(0.3, 0.0)
nnedi3_rpow2(2, cshift="Spline64Resize", fwidth=width*2, fheight=height)
Sharpen(0.3, 0.0)
Crop(2,10,-6,-16).AddBorders(4,12,4,14)
AssumeTFF().SeparateFields().SelectEvery(4,0,3).We ave()
In red is suggestion of jagabo
Decode it:
Estou adorando suas explicaēões!
Bom café da mahć,
Grande abraēo !Last edited by Caiosouza; 9th Nov 2016 at 19:33.
-
WORKS FINE !!!
I'm thinking of leaving the yellow lines like this in his code.
The yellow lines code, i think that brought a (little) bit more visible mosquitoes,
The red leak resolved, perfect
Now tell me with your eyes clinicians, the red type is right
Originally a red bike that appears early on has this color, not a red and well, I do not want perfection, it does not exist, the photo and so you have somewhere to cling
Result:Last edited by Caiosouza; 26th Nov 2013 at 10:15.
-
Wow, I'm the who appreciates your kind patience,
What killed me was the problem with the AC3 audio to my PC to play
Now I follow: Demux Video+Track TO AVS code IN VirtualDub TO GET Raw Filtered Video TO PUT ON HCenc (6500-8000K DVd compliant) TO MUX Audio AC3+ m2v Video Result HCenc = Ready to Authoring DVD !
I need your eyes, to decide on the Sharpen yellow lines in the code, and type of red
You think you are ready for final project?Last edited by Caiosouza; 26th Nov 2013 at 10:41.
-
jagabo's code in yellow sharpens the video slightly, then resizes to full-frame DVD video, then does a little more sharpening of the resized results. A half-frame 352x576 video might play suitably on a CRT, but it will not look very good on an upsampling HDTV. It would be like enlarging a very small negative to a very large photo, and imperfections would be amplified.
Yellow on white is very difficult to read.Last edited by sanlyn; 19th Mar 2014 at 12:03.
-
I will not use it, but I thank jagabo, for giving me so many possibilities
I play the videos on standard resolution in a "modern" CRT TV(That was good! ahah), I like interlaced solution on this, leave the LCD to improved HD something
And what do you say about the red type?
PS:
Eu gosto muito do desenho do seu avatar,me traz boas lembranēas e ja assisti muitas vezes, fez parte da minha infāncia !Last edited by Caiosouza; 26th Nov 2013 at 11:39.
-
-
-
It's up to you whether you want the sharper picture or not. I was just gaving you an option. Even if you choose not to use it here it may come in useful for some cleaner video in the future.
-
Last edited by Caiosouza; 26th Nov 2013 at 12:32.
-
It does. As does Muxman and most DVD authoring programs. That's the first I've heard of an authoring program requiring already muxed sources. However, what's more important is what this TV station for whom this work is being done wants. If it'll take an MPG then Imago is very good for that. If it needs a DVD (and doesn't need a menu), then I'd always go with Muxman.
-
After several testing, I'm going to filter all file 150 min, was already spoken, but what bitrate to use in HCenc to get decent quality to get everything in 1 DVD9 (Min ,MAx)
And why the line (in Red), if the original file already and interlaced?
I withdraw # --- re-interlace ?
These are my final questions.
And I will use this code:
Import("Drive:\path\to\Avisynth plugins\FixChromaBleeding2.avs")
MPEG2Source("Drive:\path\to\project\1992 MX 250 Sample.d2v", CPU=6, Info=3)
QTGMC(preset="fast")
McTemporalDenoise(settings="low")
ColorYUV(cont_y=-10,off_y=1.0)
FixChromaBleeding2()
ChromaShift(v=4)
MergeChroma(aWarpSharp2(depth=30))
MergeChroma(aWarpSharp2(depth=20))
Spline64Resize(width*2, height)
Crop(2,10,-6,-16).AddBorders(4,12,4,14)
# --- re-interlace
AssumeTFF().SeparateFields().SelectEvery(4,0,3).We ave() -
Because QTGMC deinterlaced it and made it 50fps.
but what bitrate to use in HCenc to get decent quality to get everything in 1 DVD9 (Min ,MAx)
And if you're making or already have a menu for it, you have to allow for that, too. -
But I can choose interlaced, time to encode the HCenc, and he give me 25fps
Not?
I intend to pass the HCenc Overall 6500 to 8000MAX , without audio.
Then mux Video M2V and AC3 audio on muxman and have ready to dvd, this correct?
I will not use the menu,
I will use your recommendation and go in Muxman, as you quoted
Thanks for everything!Last edited by Caiosouza; 27th Nov 2013 at 19:34.
-
Not if you haven't added the reinterlacing portion of the script. Progressive 50fps isn't DVD compliant and won't author for DVD, no matter how HCEnc handles it. You may wind up with a 25fps DVD that has twice the original length.
Where it says:
# --- re-interlace
AssumeTFF().SeparateFields().SelectEvery(4,0,3).We ave()
I intend to pass the HCenc Overall 6500 to 8000MAX , without audio.
Then mux Video M2V and AC3 audio on muxman and have ready to dvd, this correct?
If so, scroll through the script with it open in VDub and choose frame numbers where you might want them. Create a celltimes.txt for muxman like this:
5000
10000
15000
20000
.
.
.
and put the frame numbers for the chapters inside the celltimes.txt. In Muxman add the chapters in File->Import Chapters (something like that). -
That is the bitrate I used in the mpeg demos posted here. Earlier the O.P. posted a sample result from the script being used, encoded at ~4000 kbps. Most action shots had the same mosquito noise and other motion problems that appeared on the original video. I used HCenc to encode the results of the script and kept raising the bitrate until motion was smooth and clean. If the video is going to be viewed on a CRT, one could get away with 6000 instead of 6500. The maximum could go to 9000 IMO.
A bitrate calculator for 150 minutes of MPEG2 on a single layer DVD disc will give a bitrate of approximately 3800 VBR/9000 max. That will result in the same problems the O.P. complained about with the original video, made a bit worse by the fact that it will be a re-encode of a poorly encoded, low-bitrate, fast-action half-frame DVD encoded at a 6-hour MPEG1 bitrate. However, at bitrates higher than 3800 VBR, the O.P. will not be able to fit the entire video on a single-layer disc. He will have to split the video into two discs, or split the video onto a double-layer disc. Besides fast action, there is considerable object displacement, wrinkling, and distortion on the original encode. There would be little sense in spending all this effort at recovery, just to end up with the same low bitrate results that the owner started with. The original encoded video was 352x576 @ about 1300 kbps.Last edited by sanlyn; 19th Mar 2014 at 12:03.
-
Okay, but he's already said he wants it on a dual-layer DVD. So that 6500 figure doesn't have any relation to what's needed to do that. Maybe it really is the bitrate needed to fill the DVD with whatever audio he has on there, but that would just be a coincidence as you came up with that figure as the bitrate you thought was needed for some sort of acceptable quality. And he had better make a bunch of chapters so there's a good place to split it for the second layer. Without chapters it'll never be able to be burned to a dual-layer disc.
Similar Threads
-
help me improve the video quality of my game trailer with avs video editor
By DapperDave in forum Newbie / General discussionsReplies: 4Last Post: 24th Apr 2012, 01:06 -
need tips to improve theora video quality for html 5 video
By rettew in forum Video ConversionReplies: 5Last Post: 23rd Mar 2011, 11:40 -
how can I improve this video?
By wwuster in forum Video ConversionReplies: 3Last Post: 8th Dec 2009, 09:41 -
How to improve video quality of *.3gp video source
By vain in forum Newbie / General discussionsReplies: 1Last Post: 29th Nov 2009, 03:00 -
Does a better video card improve the quality of video when rendering?
By raysolomon in forum EditingReplies: 8Last Post: 3rd Mar 2009, 20:24