First. I'm sorry..
I don't write in english well and I'm beginner for movie edit.
But I really want to clear this problem.
I want to remove Logo with avisynth.
The clip that want to removel logo is LINE TV. That has two logo. And same clip also is at the youtube.
But That clip which at the youtube hasn't logo.
So. I can remove Logo. I use Crop and Layer at the logo area.
I made a function.
function LogoEraser(clip Original, Clip Replace, int FrameStart, int FrameEnd, int "Offset")
{
#대체영상의 위치를 구함
ReplaceFrameStart=FrameStart+Offset
ReplaceFrameEnd=FrameEnd+Offset
#대체구간을 생성함
SourceVideo=Trim(Original,FrameStart,FrameEnd) #원본에서 작업구간 자름
ReplaceVideo=Trim(Replace,ReplaceFrameStart,Replac eFrameEnd) #대체에서 작업구간을 자름
#원본 로고 부분의 범위를 대체에서 해당 부분 크롭함
Logo1=Crop(ReplaceVideo, Logo1x, Logo1y, Logo1w, Logo1h) #로고1 크롭
Logo2=Crop(ReplaceVideo, Logo2x, Logo2y, Logo2w, Logo2h) #로고2 크롭
#대체의 크롭한 부분을 원본영상에 레이어 함
SourceVideo=Layer(SourceVideo, Logo1, x=Logo1x, y=Logo1y) #대체 영상에 로고 1부분을 대체 함
SourceVideo=Layer(SourceVideo, Logo2, x=Logo2x, y=Logo2y) #대체 영상에 로고 2부분을 대체 함
#레이어한 프레임으로 교체 함
SourceVideo = Trim(Original,0,FrameStart-1) + SourceVideo + trim(Original,FrameEnd+1,0)
Return SourceVideo
}
Until this problem occurred, it was okay.
The two clips have different colors.
Original Youtube.
Original LINE TV.
Composite clip.
I think..I can use Twist function.. But I didn't... I couldn't adjust... T_T
I search at the google. But I couldn't.
I could search Just use BMP File. isn't Other Clip.
I guess.. I have a 2 ways..
One way is useing Twist.. or Adjust colors.
The other is useing Filter some delogo. But it's Quality lower that Original clip.
Last. I'm sorry.. I do not know if I wrote my thoughts well in English.
Thank you for read my post. I hope your comment.
+ Reply to Thread
Results 1 to 7 of 7
-
-
I changed your title to better reflect your question.
Also moved thread to our Editing Forum.
And welcome to our forums.
Moderator redwudz -
rec.601 vs. rec.709 colors.
https://forum.videohelp.com/threads/329866-incorrect-collor-display-in-video-playback#post2045830
Use ColorMatrix(mode="rec.601->rec.709") or ColorMatrix(mode="rec.709->rec.601") on whichever video has the wrong colors.Last edited by jagabo; 16th Aug 2018 at 08:46.
-
-
Last edited by Nain; 16th Aug 2018 at 21:42.
-
Rec.601 vs rec.709 effects green the most, red moderately, and blue the least. It has no effect on greyscale. My suggestion was for fixing the problem you're having erasing the logos. You're not going to fix the general color problems of your videos using ColorMatrix(). All those color variations in your samples are artistic choices in color grading (or just badly produced video!). 6.png is the only one that has near natural colors.
You need to figure out which color matrix your sources use and compensate for them. In general, HD video uses rec.709, SD uses rec.601. And it's best to specify the color matrix when you encode.
You should also verify how your system and software are set up to display video and produce screen shots -- so you see the colors correctly. -
Similar Threads
-
My method of removing a logo, need advice
By -Habanero- in forum EditingReplies: 4Last Post: 22nd Aug 2015, 15:55 -
Need help removing a moving logo from video.
By jdinh0608 in forum EditingReplies: 4Last Post: 22nd Apr 2015, 00:21 -
How to Remove Channel Logo with Avisynth?
By VideoFanatic in forum Video ConversionReplies: 32Last Post: 14th Feb 2015, 13:51 -
Adding Logo with AviSynth (error 'Could not open file' in DevIL library)
By .craZy in forum EditingReplies: 12Last Post: 7th Feb 2015, 10:09 -
Remove logo with AviSynth
By Ninelpienel in forum EditingReplies: 6Last Post: 18th May 2014, 21:16