Is it possible to play two videos side by side simultaneously on ffplay? How would you do that?
Also, is it possible to use ffplay to display histogram (with -vf histogram flag) and show histogram and video image side by side?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Last edited by Budman1; 19th Dec 2015 at 10:06.
-
for a sample with a hight of 720, this:
Code:ffplay "h:\sample.mkv" -an -vf "split[src][b];[b]histogram,scale=-1:720[filt]; [src][filt] hstack"
- split the input into two sources 'src' an 'b'
- create the histogram of 'b' and scale the histogram to a height of 720 and name that output 'filt' (to make sure that the histogram and 'src' have the same height)
- horizontally stack 'src' and 'filt'
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Thanks to Selur for the Direct ffplay method. I've added that to my notes for the future.
The suggestion for avisynth was just an alternate method that uses a very simple script that seemed, to me, easy to understand, memorize and change for other videos. It also takes care of the resizing and stacking functions automatically. -
Sorry, but using DirectShowSource normally just looks like a BAD idea to me,..
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Help needed with ffmpeg/ffplay and select
By Selur in forum Video ConversionReplies: 2Last Post: 13th Aug 2014, 02:35 -
ffplay output-what is aq?
By Punchcard in forum AudioReplies: 2Last Post: 31st Jul 2014, 14:12 -
720p and 1080p videos?:SRT files?: PS3 playback?: HD videos?
By vortun in forum Newbie / General discussionsReplies: 9Last Post: 4th Aug 2013, 09:22 -
x264+AAC in FFmpeg -- plays fine in FFplay, loses sync in mplayer
By rusmichal in forum Video ConversionReplies: 2Last Post: 6th Apr 2013, 07:52 -
Saving FFplay output
By qontranami in forum ProgrammingReplies: 6Last Post: 13th Feb 2012, 14:15