In first 1.2s of video there is a pink bar on the bottom.
[Attachment 62175 - Click to enlarge]
If this would be a picture, removing it is faster than launching Photoshop, but how about video?
+ Reply to Thread
Results 1 to 11 of 11
-
-
Using EdgeFixer on the affected frames using Avisynth or Vapoursynth should work fine.
users currently on my ignore list: deadrats, Stears555, marcorocchini -
I just run this Avisynth with EdgeFixer. Checked sample and created script. Then run it. In MPC-HC won't working, in WMP talking can't open file. I tried full path and file name only - both don't working. Script in ANSI. Video in TS, both players can load it throgh explorer. Don't know WTF
Ok, now know, script must be instructed about format. But it still don't working in MPC-HC.
Also it's not real solution, video is not fixed.Last edited by JosephTocco; 6th Dec 2021 at 04:01.
-
Code:
ImageSource("Secrets of The Desert Elephants.ts_snapshot_00.00.247.jpg", start=0, end=240, fps=23.976) ConvertToYV12() patch = ChromaShiftSP(x=20, y=-10) patch = Overlay(patch, last.Crop(0,0,0,-10)) ReplaceFramesSimple(last, patch, Mappings="[0 29]") # first 1.2 seconds
[Attachment 62196 - Click to enlarge]
http://avisynth.nl/index.php/ChromaShiftSP
http://avisynth.nl/index.php?title=RemapFramesLast edited by jagabo; 6th Dec 2021 at 17:49.
-
You need to re-encode the video after applying the filter.
open the avisynth script in virtualdub2, preview it does what you want, then save the output video. -
Here's one that doesn't require any third party filters (aside from the source filter):
Code:source = ImageSource("Secrets of The Desert Elephants.ts_snapshot_00.00.247.jpg", start=0, end=240, fps=23.976) source = source.ConvertToYV12() bottom = Crop(source, 0,source.height-10,-0,-0) # the last 10 scan lines above = Crop(source, 0,source.height-20,-0,10) # the ten scan lines just above that bottom = MergeChroma(bottom, above) # replace chroma of the bottom 10 with the chroma of those just above fixed = Overlay(source, bottom, x=0, y=source.height-10) # put the fixed chroma over the original vieo fixed.Trim(0,29)++source.Trim(30,0) # first 30 frames fixed, rest as is
-
-
Okay guys, I must research Avisynth deeper, I'm not familiar with it, but as you show me it's quite powerful.
Are there other programs than Virtualdub2, something more friendly, that support Avisynth?
Similar Threads
-
[FFMPEG BATCH SCRIPT] Remux MP4 to MKV removing all details data!
By Cauptain in forum Video ConversionReplies: 3Last Post: 12th Aug 2021, 03:38 -
Looking for help removing noise from a video
By jasonx3 in forum Newbie / General discussionsReplies: 2Last Post: 9th Jun 2020, 14:06 -
Finding audio steam details for hundreds of video files in a folder at once
By kingmustard123 in forum EditingReplies: 2Last Post: 14th Jan 2020, 03:47 -
Video details missing in Windows 10 after 1809 update.
By bizzybody in forum Newbie / General discussionsReplies: 12Last Post: 15th Dec 2018, 04:23 -
Video Creep ahead features shows more details
By SpectateSwamp in forum Newbie / General discussionsReplies: 2Last Post: 21st Mar 2018, 15:38