You are not logged in.
Hi
So as you probably know in arch exists the yt-dlp package https://archlinux.org/packages/extra/any/yt-dlp/ which you can use to fetch videos. I really like the approach and made a script that uses dmenu to send url link and then awk the url to get the video id (the part after watch?v=) to send it over yt-dlp. My commmand to do that in the script is this:
yt-dlp --no-cookies --rm-cache-dir --no-cookies-from-browser -o - --downloader ffmpeg -f "bv*+ba/b" "$videoID" | mpv -
So "$videoID" it's the obviously the video id fetched with awk from the url. But with this way I have two problems:
1) Sometimes the audio get lost, and only the frames of the video are displayed and without sound. Usually this happen in the last part of the videos, but it's random in nature.
2) I'm not getting the subtitles, not a problem, but sometimes I like to get the subs for many reasons.
3) mpv kills his own process after reproducing the video completely, I really want to send by myself the shutdown of mpv, and not after completing video reproduction.
4) I don't know if I could speed up the video reproduction in mpv, probabbly I would like to see 2x videos with subs to improve my daytime.
btw I use pipewire. Any help with this I will appreciate so much.
Last edited by Succulent of your garden (Yesterday 13:02:59)
Offline
Did some digging through the man page, and you can make mpv not quit when the video ends using --keep-open. I recommend grepping in the man page for this, since it goes into some detail.
"Don't comment bad code - rewrite it." - The Elements of Programming Style (1978), Brian W. Kernighan & P. J. Plauger, p. 144.
Offline
mpv can play youtube videos (utilizing yt-dlp) directly, you can add "ytdl-raw-options" to your mpv.conf,
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format=""bv*+ba/b"'
mpv 'https://www.youtube.com/watch?v=123456789'
cycle subtitles w/ j and speed is done w/ {[]}
Offline
2) I'm not getting the subtitles, not a problem, but sometimes I like to get the subs for many reasons.
try with --embed-subs --sub-langs=all
Offline
Hi thanks for the replies, now 3) and 4) are done, but I have an issue with the implementation of the subs, neither of both options works for me if I set the flags in yt-dl, could you put the command explicit in the thread post ? The main reason is because I had checked this with the man pages (Except the mpv one ), and I don't know how to make it work.
mpv can play youtube videos (utilizing yt-dlp) directly, you can add "ytdl-raw-options" to your mpv.conf,
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format=""bv*+ba/b"'
mpv 'https://www.youtube.com/watch?v=123456789'
This is another great approach, but I will no try that first because In my script I'm using my custom dmenu to get the current clipboard by default , so less ctrl+v and more fun, with custom message included to be sure I just launched the right script by shortcut.
So for the audio lost, I have some news, It seems if I just mute mpv, and then unmute again the sound, the sound get lost forever, unless I close the mpv process and launch the script again. What do you think about that ? Also I'm checking that after some ussage, the gpu in nvtop said that it's been 100% being in use, but with far more vram free. It's an integrated card, amd Radeon vega 3. So for example now nvtop says it's 100% being in use but the vram is 189 Mi in use, and with the total of 512 Mi. It seems that this is not allowing to get the same video again. it's like for 10 videos the gpu is out, but if I go with the browser and click the same video, the browser doesn't have any problems and reproduce the video with the gpu being 100% in use. Also no crazy fan spinning, just comfy sound from the machine.
EDIT: Okey I just reboot and check that the graphics card just start with 100% gpu ussage in nvtop LoL, What do you think ? Using LTS kernel btw.
Last edited by Succulent of your garden (2025-03-26 12:36:56)
Offline
my script I'm using my custom dmenu to get the current clipboard by default
What does that have to do with anything?
You're apparently cutting the VID out of the URL intead of just using the url (which yt-dlp can handle itself, whether or not through mpv)
You're probably losing the audio because YT no longer serves AV containers but only audio and video streams => try to use mpv directly instead of the pipe.
gpu in nvtop said that it's been 100% being in use
format="(140/m4a[format_note~=original])+(134/135)"
but yeah, decoding a 4k AV1/VP9 might tax your GPU a bit.
neither of both options works for me if I set the flags in yt-dl, could you put the command explicit in the thread post
Just add
--sub-lang="en --eng,enUS,en-US" --write-sub= --write-auto-sub=
to your yt-dlp parameters?
The syntax in my post is for the mpv.conf
Offline
Hi seth:
my script I'm using my custom dmenu to get the current clipboard by default
What does that have to do with anything?
You're apparently cutting the VID out of the URL intead of just using the url (which yt-dlp can handle itself, whether or not through mpv)
yes, you are right, now that I'm thinking it less tired, that was a very silly comment, I don't know why I was thinking in the first time that in someway my dmenu command was in somehow attach in the part of fetching the url. So silly for me, like camelot. Hope you get the monty python reference.
You're probably losing the audio because YT no longer serves AV containers but only audio and video streams => try to use mpv directly instead of the pipe.
I'll try your approach, it's seems far more better if that's the case.
gpu in nvtop said that it's been 100% being in use
format="(140/m4a[format_note~=original])+(134/135)"
but yeah, decoding a 4k AV1/VP9 might tax your GPU a bit.
Okey but remember that the gpu is in 100% since the begining of the system. After just starts, in idle mode, the gpu is in 100%, but probably it' does not and the metrics is saying 100% . So what do you think about it ?
neither of both options works for me if I set the flags in yt-dl, could you put the command explicit in the thread post
Just add
--sub-lang="en --eng,enUS,en-US" --write-sub= --write-auto-sub=
to your yt-dlp parameters?
The syntax in my post is for the mpv.conf
And for the config file for mpv, should I put all my other config like this ?
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format=""bv*+ba/b,no-cookies,rm-cache-dir,no-cookies-from-browser"'
So I can't download cookies by default and also doesn't store the video in ssd ? Also what about the flag -o --downloader ffmpeg ? I guessing that if I'm using mpv probabbly it's not needed.
Thanks for your help.
Last edited by Succulent of your garden (2025-03-27 16:24:22)
Offline
There's a stray double-quote in your key and no: "-o -" would not be helpful and --downloader is not required.
Okey but remember that the gpu is in 100% since the begining of the system. After just starts, in idle mode, the gpu is in 100%, but probably it' does not and the metrics is saying 100%
I'm afraid we'll need that in English, please…
Offline
There's a stray double-quote in your key and no: "-o -" would not be helpful and --downloader is not required.
So like this right ? :
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format=""bv*+ba/b"",no-cookies,rm-cache-dir,no-cookies-from-browser'
Succulent of your garden wrote:Okey but remember that the gpu is in 100% since the begining of the system. After just starts, in idle mode, the gpu is in 100%, but probably it' does not and the metrics is saying 100%
I'm afraid we'll need that in English, please…
I'm sorry today I'm feeling dizzy like Mongo in this video but without the urge to kill or insult someone: https://youtube.com/watch?v=M91lzp1u7ww tut mir leid.
What I'm trying to say is the following: When you launch nvtop after rebooting the system and you do nothing, just to get how much of the gpu usage is being in use in idle mode, the gpu says that is in 100% being in use. But that doesn't follow the total amount of vram of the system which is like 189 Mi of the total of 512 Mi. For me that seems to be maybe a driver issue or a bug in nvtop, because launching any other application the system just works fine, and also there are no insane fan spinning or heat. So long story short: my nvtop says that by default my gpu is being 100% being in use
I'm reading this and for now it seems fine, but today I'm having a happy Mongo day, if I wrote something wierd: Entschuldigung Seth, Ich habe kopfschmerzen :C
Last edited by Succulent of your garden (2025-03-27 18:09:55)
Offline
Try
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format="bv*+ba/b",no-cookies,rm-cache-dir,no-cookies-from-browser'
The GPU load isn't equivalent to the VRAM usage - do you run a (wayland) compositor?
(Though it might be a bogus read indeed)
Offline
Thanks, I'll try the mpv config tomorrow and I'll let you know what happen.
And no, I don't have a wayland compositor, but that machine does have installed wayland and hyprland, but I drop my wayland looking around and now just I stay with Xorg.
Offline
hi seth, this issue happend with your mpv config:
Expected '=' and a value.
Error parsing option ytdl-raw-options (option parameter could not be parsed)
~/.config/mpv/mpv.conf:144: setting option ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format="bv*+ba/b",no-cookies,rm-cache-dir,no-cookies-from-browser' failed.
do you think is for the empty write-sub= and write-auto-sub= ?
The video show the first frame and then stops btw
Last edited by Succulent of your garden (2025-03-29 20:56:47)
Offline
No, it's the missing "0" in yoru cookies and cachedir options.
ytdl-raw-options='sub-lang="en,eng,enUS,en-US",write-sub=,write-auto-sub=,format="bv*+ba/b",no-cookies=,rm-cache-dir=,no-cookies-from-browser='
The video show the first frame and then stops btw
In doubt try
format="(140/m4a[format_note~=original])+(134/135)"
Offline
Thanks Seth, now It works. Also with the best format possible
But i'm not sure why I should put the 0 in the cookies flag stuff. Does zero means that my flag is going to be disabled ? Since mpv is not a browser I'm not sure if it can store cookies, and also I don't want to store the video forever, so that's the reason of rm-cache-dir. If I want that: Should I put a 1 after the = sign ?
Last edited by Succulent of your garden (Yesterday 13:06:00)
Offline
Nowhere, typo - sorry.
"=", not "0" - the ytdl-raw-options I posted are however correct.
The flag doesn't take a parameter, but ytdl-raw-options requires the foo=[bar] syntax
Offline
So in essence are the flags getting activated right ? So no cookies and video send to ram and never to storage drive right ?
Offline
Yup.
Whether they're respected you'll have to wireshark for.
--no-cookies and --no-cookies-from-browser are default, though.
Offline
thanks so much for the help
Now it's so comfy to get my video in my dwm with among other things, and also I can watch my videos in x 3
Last edited by Succulent of your garden (Yesterday 14:45:43)
Offline