/mpv/

how do I get mvtools to work with mpv?

Attached: mpv-logo-128-0baae5aa.png (128x128, 10K)

Other urls found in this thread:

github.com/dubhater/vapoursynth-mvtools/releases/tag/v19)
github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy
mpv.io/manual/stable/#script-commands
github.com/rossy/mpv-install/blob/master/README.md
sourceforge.net/projects/mpv-player-windows/files
7-zip.org/
mpv.io/manual/master/#command-interface-sub-reload
twitter.com/NSFWRedditImage

Sorry to slightly hijack but - video gurus, I need a ffmpeg master to help me make a script that makes 20 thumbnails from any point of a video, excluding its first 5% and its last 30%. This one takes one every minute of its duration:
for %%f in (*.avi, *.m2ts, *.mkv, *.mp4, *.vob) do (

ffmpeg -ss 1 -i "%%f" -vf fps=1/60 "thumb%%2d.bmp"

)

Someone told me I should "use ffprobe to get the duration, then multiply it by 0.65, and put it after -ss. Would that be correct? Here's my bad attempt at that, which doesn't work at all:
for %%f in (*.avi, *.m2ts, *.mkv, *.mp4, *.vob) do (
set duration="ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 "%%f""
ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 "%%f"
FOR /F "tokens=*" %%i IN (' %duration% ') DO SET X=%%i
ffmpeg -ss "$duration" -i "$input" -i "%%f" -vf fps=1/60 "thumb%%2d.bmp"
)


t. desperate non-programmer that just needs some fucking thumbs !!!

Just use potplayer with spvflow and fanpack presets!

Download mpv with vapoursynth, put vapoursynth portable into mpv.exe dir (or PATH), put mvtools (github.com/dubhater/vapoursynth-mvtools/releases/tag/v19) into plugins dir of vapoursynth, download: github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy of haasn's github, put into same path as .exe (for example)

then add keybind like:
v cycle-values vf "vapoursynth=~~/mvtools.py" ""

This will give you a on demand toggle of mvtools.

Tweak the .py for preferences or make a script to load mvtools.py on specific files, e.g videos running @ 720p23fps.. or if you have SVP and hate the GUI, run it once, find the temporary .py it creates copy that to mpv dir and use that instead of mvtools.py

Wait a little bit, haasn is going to release THE motion interpolation algorithm.

Use VLC

are you the one who posted these movie shot compilations on /tv/ just yesterday?

is there a way to display the active videos information like frame rate, bit rate & resolution as overlay on the video?

nvm found it
mpv.io/manual/stable/#script-commands
press i for temporary toggle and shift+i for permanent toggle

Really? Did he post any news about it? Haven't heard anything from him about the motion interpolation in months...