/mpv/ - what's next?

Attached: 1487168742155.png (1200x855, 362K)

Other urls found in this thread:

github.com/mpv-player/mpv/pull/5804
catb.org/esr/faqs/smart-questions.html
mpv.io/manual/master/#options-log-file
mpv.io/manual/master/
iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/
twitter.com/NSFWRedditGif

Any news about FSRCNNX?

Maybe a new motion interpolation algo, i don't know...

need mpv config for windows

I prefer VLC.

Attached: VLC media player.png (647x489, 57K)

There are tons of settings GUI.

Madshi said his one will be usable at realtime in 2020. He is still saying "not upscale algo" but de all know it's a motion interpolation algo.

I hope it will be as fast/good as NGU medium.

At least make a screenshot of the image opened in mpv

if you have ATi and use vo=vdpau
if you add fs=yes there will be no tearing
something i noticed

profile=gpu-hq
video-sync=display-resample
interpolation
tscale=oversample
volume=100
volume-max=100
fullscreen

Uninstall and go to mpc-hc+madvr

>mpc-hc
Why? Is it still maintained?
Why not the faster with madvr potplayer or the mpc-be?

Is this player /a/ approved?

Attached: devs.png (307x276, 83K)

>why not the faster with madvr potplayer or the mpc-be?

the fuck are you even saying?

Do you need to do the needful?

PotPlayer uses the latest madVR API which is faster.

yes, haruhi is cute

is it madshi approved
sauce?

Yes, look at the madshi's "ugly" website.

It's okay not everyone can be smart.

Attached: 1528490672456.gif (285x300, 293K)

>what's next?
How about 0.29.0?

Numeric release is retarded. Only stupid pajeets need this kind of stuffs.

how is it faster then

whats the best config for mac?

A new stable release for Windows

They literally change their waifus every six months

What happened to rossy?

best setting for ubuntu 18 with xfce?

How the fuck do I get smooth 4K HEVC playback using my RX580?

Tried
mpv.com --v --no-config --vo=gpu --gpu-api=vulkan --gpu-context=winvk

with mpv-x86_64-20180603-git-7f625ea on Windows with 18.2.1 AMD Drivers but it fucks up.

[ffmpeg/video] hevc: First slice in a frame missing.
And similar frame drops and lag.

Attached: 1489683438060.png (612x491, 98K)

killed by a drop bear

I'm currently testing it on MacOS Mojave

You should be using iina.

GUI coming soon. Will be a WPF for windows.

I don't believe you, guy. :(

JEEB, pleeeeeeeeese!
github.com/mpv-player/mpv/pull/5804

How to fix oversaturated reds?

catb.org/esr/faqs/smart-questions.html

I'm on a high end GPU and mid-tier CPU. Just did a fresh install of Windows 10 with updated drivers. Getting MASSIVE frame drops and 100% CPU load (~50% GPU load) with:

profile=opengl-hq

Previously I was not and performance for all videos was incredibly stable. Any idea what MPV might be doing?

Attached: 1dio9ifosy211.jpg (1366x768, 162K)

Hopefully a useful fucking interface for android. I'm stuck with VLC because MPV has 0 options and basically no interface on android

Post log. mpv.io/manual/master/#options-log-file

I might have figured it out?

Specifying:

hwdec=dxva2-copy

Brings down CPU usage by about 30% but still not as good as before a fresh Win10 install.

gpu-api=d3d11
hwdec=d3d11va
Try with this.

For 4K maybe in 2020. Maybe it will be fast enough for 1080p?

What is everyone using for their video interpolation method?
tscale=*

Is oversample still the best option for minimal artifacts? Primarily using MPV for 24FPS films on 60hz display.

catmull_rom seems really promising to me. I don't see any benefit using oversample in 24FPS clips.

local mp = require 'mp'
local msg = require 'mp.msg'

local threshold = 3
local function changed_speed(name, value)
if value > threshold then
mp.set_property_native('af', {{name='scaletempo', enabled=true, params={}}})
else
mp.set_property_native('af', {{name='rubberband', enabled=true, params={channels="together"}}})
end
end

local function changed_af(name, value)
if value.name then msg.error("af is now " .. value.name) end
end

mp.observe_property("speed", "number", changed_speed)
mp.observe_property("af", "native", changed_af)


mp.set_property_native('af', ...) isn't working for me. What am I doing wrong?

Attached: 1499574123139.jpg (307x462, 13K)

use profile=gpu-hq

I REALLY don't understand the
--video-sync-max-video-change=* option. Super unclear documentation for it. I just don't want it to touch 24FPS content for video interpolation.

you try to write a array of tables (which is the right format for af), but then try to access the changed property as a single table on changed_af.

Igv, what about "MRT simulated" FSRCNNX?

Okay you're right about that, but even getting rid of changed_af doesn't fix this at all. That changed_af function is never being fired, the af property isn't actually getting changed.

local function changed_speed(name, value)
if value > threshold then
msg.error(" before change to scaletempo: " .. utils.to_string(mp.get_property_native('af')))
mp.set_property_native('af', {{name='scaletempo', enabled=true, params={}}})
msg.error(" changed to scaletempo: " .. utils.to_string(mp.get_property_native('af')))
else
msg.error(" before change to rubberband: " .. utils.to_string(mp.get_property_native('af')))
mp.set_property_native('af', {{name='rubberband', enabled=true, params={channels="together"}}})
msg.error(" changed to rubberband: " .. utils.to_string(mp.get_property_native('af')))
end
end

mp.observe_property("speed", "number", changed_speed)

AV: 00:00:16 / 00:06:39 (4%) x2.85 A-V: 0.016 DS: 0.860/45 Dropped: 58 Cache: 28s+2MB
[rubberband_helper] before change to rubberband: {{"enabled" = true, "name" = "rubberband", "params" = {"channels" = "together"}}}
[rubberband_helper] changed to rubberband: {{"enabled" = true, "name" = "rubberband", "params" = {"channels" = "together"}}}
...
AV: 00:00:16 / 00:06:39 (4%) x3.14 A-V: -0.026 DS: 0.780/46 Dropped: 70 Cache: 27s+2MB
[rubberband_helper] before change to scaletempo: {{"enabled" = true, "name" = "rubberband", "params" = {"channels" = "together"}}}
[rubberband_helper] changed to scaletempo: {{"enabled" = true, "name" = "rubberband", "params" = {"channels" = "together


after calling mp.set_property_native('af', {{name='scaletempo', enabled=true, params={}}}), af doesn't actually change...

I use mpv --vf=stereo3d=sbsl:ml --video-aspect=32:9 in order to play SBS 3D movies in 2D. The problem is that it drops a lot of frames. What do. (--video-stereo-mode isn't even recognized as an option).

mpv would actually be perfect if it had a fucking volume slider

Dumbest complaint ever

i don't really have a clue. try running with -v looking at the logs, to see if something pops up. also, maybe it doesn't change instantly when set_property_native is called, so calling get_property_native right after wouldn't catch the change. this is merely a guess though.

even garbage vlc has this

And? You can put your cursor over the volume icon and scroll to change the volume in mpv or use your keyboard like a normal person.

How to minimize window with a hotkey?

q

What's the format for using input hotkeys in the command line?

Is there a guide to change settings and to know what do they do for dummies? I just installed it and the lack of a GUI is confusing.

Yes, have you ever searched the internet before?

Conventional MRT only.

How to skip the first and last 10 seconds of a file based on the filename?

How to set unpause command for a certain profile? I have "pause" in config for general media but want to have unpaused state for streams. Unpause or pause=no, no-pause doesn't work.

:(

Haasn said he could implement MRT support.
Maybe you should contact him on IRC.

How to make an oringal size screenshot?
It's even saving UI.

Attached: mpv-shot0020.png (959x539, 736K)

madvr, duh

Attached: Screenshot_20180610-073254_Firefox.jpg (1399x376, 68K)

Thanks, i didn't know that, it was working differently on windows.
How to make, that mpv skip 1 sec of video instead of 6 sec?

mpv.io/manual/master/

Thanks again.

[protocol.https]
pause=no

iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/

>gui player
>no interface to open files
>interface inferior to vlc
I drop mpv after a couple of minutes every time I try it. I'd rather put up with vlc screwing up with playback from time to time than use that mistake known as mpv.

It's designed to be minimalist. Just use a player that suits your needs, no need to flame.

Use mpc-qt then.

>qt
>under any circumstance
No, it would be acceptable only if it was using gtk2.

the post you quoted already has all the best settings. everything else is placebo

Thank you. My bad.

igv cuck, update fsrfoxnews right now!

>tscale=oversample
>the best settings

you're right, off is the best setting, but oversample is the best tscale, anything else is eyerape.

What does "RAVU" mean? I get that RAISR is "Rapid and Accurate Image Super
Resolution", but what about RAVU?

>argues for vlc
>autismo over qt
if you're gunna shitpost, try and put more effort into it

Real Anime Virtual Upscaling

>fsrfoxnews
WTF is that?

how do i mute with my right mouse button

in input.conf
MBTN_RIGHT cycle mute

is it possible to mute with my back forward button on my mouse

MBTN_FORWARD and MBTN_BACK

you can add input-test to mpv.conf then it will tell you the name of the buttons for input.conf when you press them

Where do I find mpv.cfg?

Oh, they changed their website? Good.

Which build should I use is better, by lachs0r or shinchiro (git)?

Someday I will have to stop using MPC, but that day is not today.

Being able to change the default volume would be an amazing place to start.

You can do that.

Ok, let me rephrase that.
Being able to intuitively change the default volume would be an amazing place to start.

It's intuitive to me.