Video player with "skip on frame" function

Message
Author
snl
Posts: 54
Joined: Fri May 08, 2020 2:00 pm

Video player with "skip on frame" function

#1 Post by snl »

Is there any video player, which has function "skip on exact frame number", like e.g. in MPC-HC ?
VLC can skip only on time.

Or some application, where I could compare two same frames of two different versions of some movie...
Goodbye Windows :snail:

User avatar
Michael-IDA
Posts: 371
Joined: Sat Jan 12, 2019 8:00 pm

Re: Video player with "skip on frame" function

#2 Post by Michael-IDA »

snl wrote: Wed Jul 01, 2020 3:43 am Or some application, where I could compare two same frames of two different versions of some movie...
MPlayer and its front end(s) SMPlayer can go frame by frame.

Code: Select all

. Frame step  [<< period]
, Frame back step [<< comma]
Once you get the frame you want you can take a screenshot

Code: Select all

Ctrl+Shift+S Screenshot with subtitles
Ctrl+Alt+S Screenshot without subtitles
If you have two same frame screenshots you can use compare to get a difference:

Code: Select all

compare "$first" "$second" -compose src "$path/$image-diff.png"
That help?
Michael

Code: Select all

michael@local [~/common/bin]# compare --help
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114 http://www.imagemagick.org
NIH Cancer Study: The group supplemented with both vitamins and fenbendazole exhibited significant (P = 0.009) inhibition of tumor growth.
The day Microsoft makes a product that doesn't suck...
... is the day they make a vacuum cleaner.

snl
Posts: 54
Joined: Fri May 08, 2020 2:00 pm

Re: Video player with "skip on frame" function

#3 Post by snl »

Thanks !

Is there any way to skip on eg. frame number 11535 ?
Goodbye Windows :snail:

User avatar
Stevo
Developer
Posts: 14828
Joined: Fri Dec 15, 2006 7:07 pm

Re: Video player with "skip on frame" function

#4 Post by Stevo »

Edit: Ahh, vidcutter in our test repos allows you to see the frames both by time and number--good for precision in cutting out video clips. That may be what you want.

I'm sure mpv can do it, too, since it seems to do anything, but that really isn't exposed. We have a sort of clone of MPC in the repo called mpc-qt, but a quick look doesn't seem to show that feature, though I could have missed it.

Avidemux, which you can run from the AppImage, allows you to go frame by frame, too, but I don't see any numbering feature--it handles those by timestamps like SMPlayer.

Post Reply

Return to “Software / Configuration”