Replies: 4 comments 7 replies
-
I believe this is a question for ffmpeg group, as lavfi is a part of it. |
Beta Was this translation helpful? Give feedback.
-
I don't know which OS you are using but on Windows you can just copy your mpv directory to another location, and then run each mpv from its own directory, so now you have two instances of mpv running side-by-side. This is what I do when I am trying to compare two video files. |
Beta Was this translation helpful? Give feedback.
-
apply luts and it splits screen in two but yes it's the same source. so for sure you can apply two different settings to same video ...but yeah not sure if two different videos works or not. I was trying to do video thumbnails and do have it 2x2 for each thumb but thought to do a few seconds but it was way too much processing power. |
Beta Was this translation helpful? Give feedback.
-
I ended up just bailing on mpv and used ffplay instead. ffplay -f lavfi "movie=<file1>[a];movie=<file2>,hflip[b];[a][b]hstack,zscale=min=709,format=gbrp"
#or
ffplay -f lavfi "movie=<file1>[a];movie=<file2>,vflip[b];[a][b]vstack,zscale=min=709,format=gbrp" The mirroring helps me see more clearly if there's a color difference (without the mirroring it always looks like the colors are mismatched to me for some reason, brains are weird). The zscale and format filters help color correct the output so it usually looks the same as mpv which I guess half answers my original question, but isn't really a good enough answer since it wouldn't actually allow me to play it according to mpv's settings. I'm still interestedi n doing this with mpv instead btw, but I have another way for now i suppose. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I know it's possible to render two videos side by side by using this filter:
--lavfi-complex="[vid1] [vid2] hstack [vo]"
However it has a problem where the rendered video's colors won't always match, because mpv's settings are only being applied to the first video, whereas the second video doesn't get the same color management, this leads to videos looking different, and unfortunately the main reason I want to be able to compare videos is to be able to confirm that the colors aren't changing between the files, so this flaw defeats the purpose of doing it this way for me.
Is there another way where the videos will both have mpv's color management applied to them individually?
Beta Was this translation helpful? Give feedback.
All reactions