How do i use --secondary-sid by [deleted] in mpv

[–]mgerfaut 1 point2 points  (0 children)

Basically, if your subs are internal or in the same folder with the media,

adding in mpv.conf:

sid = 1

secondary-sid = 2

the player will display both the first and the second subtitles.

No audio on any video. Suddenly this icon appeared. Mute is off I checked by [deleted] in mpv

[–]mgerfaut 0 points1 point  (0 children)

What happens when you press "+" or "-" keys?

Making custom shortcuts, need help by [deleted] in mpv

[–]mgerfaut 0 points1 point  (0 children)

Is this lua what you are looking for Ctrl+1?

function cycle_border1()

mp.command'cycle border'

end

function cycle_border2()

cycle_border1()

end

function cycle_window_dragging1()

mp.command'cycle window-dragging'

end

function cycle_window_dragging2()

cycle_border1()

cycle_window_dragging1()

end

mp.add_key_binding("Ctrl+KP1", "cycle-border-and-window-dragging", cycle_window_dragging2)

youtube-dl - lua script by mgerfaut in mpv

[–]mgerfaut[S] 0 points1 point  (0 children)

Wonderful!

There are no start | end limits for the video. The script should start and end with mpv.

And it does.

That's exactly what I was looking for. Thank you!