Log in

View Full Version : GUI for ffplay with console output


PCU
2nd February 2018, 10:53
I'm looking for a GUI front-end with command-line for playing media files with FFmpeg (like FFmpeg GUI converter: myFFmpeg)

do you know any?

microchip8
2nd February 2018, 14:57
FFmpeg is not a player but an encoder/decoder. ffplay, which is part of FFmpeg, is a player but without a GUI

PCU
2nd February 2018, 16:40
is there any gui for ffplay with console output? https://usefulshortcuts.com/imgs/yahoo-smileys/39.gif
i need it for testing video files & report bugs to ffmpeg team.

microchip8
2nd February 2018, 21:36
why do you need a GUI for reporting bugs? Just run ffplay with your files in a console and it will give you its output. I don't see why a GUI is a requirement

PCU
3rd February 2018, 12:42
because i need to change the position of video on seekbar, is it possible to do it with cm?

microchip8
3rd February 2018, 12:59
Use the -ss option

ffplay -ss 00:15:00 -i input.mkv

the above example will start playing from 15 minutes into the video

raffriff42
3rd February 2018, 13:05
ffplay can seek within the video by right clicking on the screen. It seeks "to percentage in file corresponding to fraction of width," ie left = start, right = end.
https://ffmpeg.org/ffplay.html#While-playing

microchip8
3rd February 2018, 13:19
you can also use all arrow keys (up or down, left or right) to seek accordingly