▲ 63 ▼ You can't even download stuff anymore (hexbear.net) submitted 2 weeks ago by la_tasalana_intissari_mata@hexbear.net to c/technology@hexbear.net 65 comments fedilink hide all child comments it's not an option to even download an image, I have to screenshot, now what screen record videos?
[–] PorkrollPosadist@hexbear.net 8 points 2 weeks ago (23 children) Yt-dlp permalink fedilink source parent hideshow 23 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago* (last edited 2 weeks ago) (22 children) I've been getting 403 when I try to use it recently, and when I try to update it, apt insists I already have the latest version. Maybe Google has blocked every outlet of my VPN? permalink fedilink source parent hideshow 22 child comments replies: [–] supafuzz@hexbear.net 4 points 2 weeks ago (10 children) Are you using the browser impersonation feature? permalink fedilink source parent hideshow 10 child comments replies: [–] Ildsaye@hexbear.net 3 points 2 weeks ago (9 children) This is new to me. Seems I have to set up a simulated browser using a command or program called curl? What do I need to understand to not screw this up? permalink fedilink source parent hideshow 9 child comments replies: [–] Blazkowicz@hexbear.net 6 points 2 weeks ago (4 children) Using a vpn is usually not going to work with anything that hits youtube. Google are really fast at putting captchas on anonymised traffic which breaks most 3rd party access permalink fedilink source parent hideshow 4 child comments replies: [–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent [–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent [–] supafuzz@hexbear.net 2 points 2 weeks ago (3 children) if the problem is your vpn then it won't help. the tooling is probably already included in your yt-dlp. just put --impersonate chrome on the end of your call in the terminal permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent [–] Tabitha@hexbear.net 2 points 2 weeks ago (1 child) I strongly prefer extensions/bookmarklets for this reason. it's already in my memory, don't clone the whole universe (or make an additional HTTP request) just to download it). permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 5 points 2 weeks ago What extensions/bookmarklets are you referring to? permalink fedilink source parent [–] Infamousblt@hexbear.net 2 points 2 weeks ago (8 children) I use yt-dlp a lot, and at least on windows I have my own custom script that I use that just runs the raw exe with parameters that I set. Anytime it breaks I download the new exe and it works fine again. I used it this week actually. Maybe this sort of option will work for you. permalink fedilink source parent hideshow 8 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (7 children) I'm on Linux Mint, and the installation manager called Apt has me on a version of yt-dlp from March. Maybe there are arguments that will force it to install more recent experimental builds or something? I just don't know what to look for. I'm more of a Windows refugee than someone who wants to make Linux my hobby, you know? permalink fedilink source parent hideshow 7 child comments replies: [–] Infamousblt@hexbear.net 2 points 2 weeks ago For sure. Definitely the reason I haven't switched to Linux yet. I'm sure there's some way to force it to pick up the latest version, some Linux comrade will come in here at some point and tell us what that command is lol permalink fedilink source parent [–] beanlover@hexbear.net 1 point 2 weeks ago (5 children) I use the python module instead for this reason, but I think this is what you have to do to update yt-dlp when it's installed from apt: sudo yt-dlp -U permalink fedilink source parent hideshow 5 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] Ildsaye@hexbear.net 2 points 2 weeks ago* (last edited 2 weeks ago) (22 children) I've been getting 403 when I try to use it recently, and when I try to update it, apt insists I already have the latest version. Maybe Google has blocked every outlet of my VPN? permalink fedilink source parent hideshow 22 child comments replies: [–] supafuzz@hexbear.net 4 points 2 weeks ago (10 children) Are you using the browser impersonation feature? permalink fedilink source parent hideshow 10 child comments replies: [–] Ildsaye@hexbear.net 3 points 2 weeks ago (9 children) This is new to me. Seems I have to set up a simulated browser using a command or program called curl? What do I need to understand to not screw this up? permalink fedilink source parent hideshow 9 child comments replies: [–] Blazkowicz@hexbear.net 6 points 2 weeks ago (4 children) Using a vpn is usually not going to work with anything that hits youtube. Google are really fast at putting captchas on anonymised traffic which breaks most 3rd party access permalink fedilink source parent hideshow 4 child comments replies: [–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent [–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent [–] supafuzz@hexbear.net 2 points 2 weeks ago (3 children) if the problem is your vpn then it won't help. the tooling is probably already included in your yt-dlp. just put --impersonate chrome on the end of your call in the terminal permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent [–] Tabitha@hexbear.net 2 points 2 weeks ago (1 child) I strongly prefer extensions/bookmarklets for this reason. it's already in my memory, don't clone the whole universe (or make an additional HTTP request) just to download it). permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 5 points 2 weeks ago What extensions/bookmarklets are you referring to? permalink fedilink source parent [–] Infamousblt@hexbear.net 2 points 2 weeks ago (8 children) I use yt-dlp a lot, and at least on windows I have my own custom script that I use that just runs the raw exe with parameters that I set. Anytime it breaks I download the new exe and it works fine again. I used it this week actually. Maybe this sort of option will work for you. permalink fedilink source parent hideshow 8 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (7 children) I'm on Linux Mint, and the installation manager called Apt has me on a version of yt-dlp from March. Maybe there are arguments that will force it to install more recent experimental builds or something? I just don't know what to look for. I'm more of a Windows refugee than someone who wants to make Linux my hobby, you know? permalink fedilink source parent hideshow 7 child comments replies: [–] Infamousblt@hexbear.net 2 points 2 weeks ago For sure. Definitely the reason I haven't switched to Linux yet. I'm sure there's some way to force it to pick up the latest version, some Linux comrade will come in here at some point and tell us what that command is lol permalink fedilink source parent [–] beanlover@hexbear.net 1 point 2 weeks ago (5 children) I use the python module instead for this reason, but I think this is what you have to do to update yt-dlp when it's installed from apt: sudo yt-dlp -U permalink fedilink source parent hideshow 5 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] supafuzz@hexbear.net 4 points 2 weeks ago (10 children) Are you using the browser impersonation feature? permalink fedilink source parent hideshow 10 child comments replies: [–] Ildsaye@hexbear.net 3 points 2 weeks ago (9 children) This is new to me. Seems I have to set up a simulated browser using a command or program called curl? What do I need to understand to not screw this up? permalink fedilink source parent hideshow 9 child comments replies: [–] Blazkowicz@hexbear.net 6 points 2 weeks ago (4 children) Using a vpn is usually not going to work with anything that hits youtube. Google are really fast at putting captchas on anonymised traffic which breaks most 3rd party access permalink fedilink source parent hideshow 4 child comments replies: [–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent [–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent [–] supafuzz@hexbear.net 2 points 2 weeks ago (3 children) if the problem is your vpn then it won't help. the tooling is probably already included in your yt-dlp. just put --impersonate chrome on the end of your call in the terminal permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] Ildsaye@hexbear.net 3 points 2 weeks ago (9 children) This is new to me. Seems I have to set up a simulated browser using a command or program called curl? What do I need to understand to not screw this up? permalink fedilink source parent hideshow 9 child comments replies: [–] Blazkowicz@hexbear.net 6 points 2 weeks ago (4 children) Using a vpn is usually not going to work with anything that hits youtube. Google are really fast at putting captchas on anonymised traffic which breaks most 3rd party access permalink fedilink source parent hideshow 4 child comments replies: [–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent [–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent [–] supafuzz@hexbear.net 2 points 2 weeks ago (3 children) if the problem is your vpn then it won't help. the tooling is probably already included in your yt-dlp. just put --impersonate chrome on the end of your call in the terminal permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] Blazkowicz@hexbear.net 6 points 2 weeks ago (4 children) Using a vpn is usually not going to work with anything that hits youtube. Google are really fast at putting captchas on anonymised traffic which breaks most 3rd party access permalink fedilink source parent hideshow 4 child comments replies: [–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent [–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent
[–] Ildsaye@hexbear.net 4 points 2 weeks ago (2 children) I was downloading youtube videos just fine with a vpn until a couple weeks ago. I have no idea what changed. permalink fedilink source parent hideshow 2 child comments replies: [–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent [–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent
[–] ZWQbpkzl@hexbear.net 4 points 2 weeks ago* Bots will use VPN nodes as cheap proxies. They will abuse it until google bans the IP for abuse. The bots rotate to a new node and continue. Real users are also banned from that node as well until google forgives it. permalink fedilink source parent
[–] Blazkowicz@hexbear.net 3 points 2 weeks ago Google eventually get savvy to it. Your options are try again without a vpn, try with the session cookies from a logged in session, or wait until yt-dl patch whatever fresh hell google are doing to block you permalink fedilink source parent
[–] reader@hexbear.net 1 point 2 weeks ago that's surprising given that tor and youtube has a like 50% success rate from what I remember permalink fedilink source parent
[–] supafuzz@hexbear.net 2 points 2 weeks ago (3 children) if the problem is your vpn then it won't help. the tooling is probably already included in your yt-dlp. just put --impersonate chrome on the end of your call in the terminal permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) yt_dlp.utils.YoutubeDLError: Impersonate target "chrome" is not available. Use --list-impersonate-targets to see available targets. You may be missing dependencies required to support this target. permalink fedilink source parent hideshow 2 child comments replies: [–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] supafuzz@hexbear.net 2 points 2 weeks ago (1 child) well, try --list-impersonate-targets then, what've you got permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] Ildsaye@hexbear.net 1 point 2 weeks ago It was on the list, but every item on the list was greyed out and labeled (unavailable) permalink fedilink source parent
[–] Tabitha@hexbear.net 2 points 2 weeks ago (1 child) I strongly prefer extensions/bookmarklets for this reason. it's already in my memory, don't clone the whole universe (or make an additional HTTP request) just to download it). permalink fedilink source parent hideshow 1 child comment replies: [–] Ildsaye@hexbear.net 5 points 2 weeks ago What extensions/bookmarklets are you referring to? permalink fedilink source parent
[–] Ildsaye@hexbear.net 5 points 2 weeks ago What extensions/bookmarklets are you referring to? permalink fedilink source parent
[–] Infamousblt@hexbear.net 2 points 2 weeks ago (8 children) I use yt-dlp a lot, and at least on windows I have my own custom script that I use that just runs the raw exe with parameters that I set. Anytime it breaks I download the new exe and it works fine again. I used it this week actually. Maybe this sort of option will work for you. permalink fedilink source parent hideshow 8 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (7 children) I'm on Linux Mint, and the installation manager called Apt has me on a version of yt-dlp from March. Maybe there are arguments that will force it to install more recent experimental builds or something? I just don't know what to look for. I'm more of a Windows refugee than someone who wants to make Linux my hobby, you know? permalink fedilink source parent hideshow 7 child comments replies: [–] Infamousblt@hexbear.net 2 points 2 weeks ago For sure. Definitely the reason I haven't switched to Linux yet. I'm sure there's some way to force it to pick up the latest version, some Linux comrade will come in here at some point and tell us what that command is lol permalink fedilink source parent [–] beanlover@hexbear.net 1 point 2 weeks ago (5 children) I use the python module instead for this reason, but I think this is what you have to do to update yt-dlp when it's installed from apt: sudo yt-dlp -U permalink fedilink source parent hideshow 5 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] Ildsaye@hexbear.net 2 points 2 weeks ago (7 children) I'm on Linux Mint, and the installation manager called Apt has me on a version of yt-dlp from March. Maybe there are arguments that will force it to install more recent experimental builds or something? I just don't know what to look for. I'm more of a Windows refugee than someone who wants to make Linux my hobby, you know? permalink fedilink source parent hideshow 7 child comments replies: [–] Infamousblt@hexbear.net 2 points 2 weeks ago For sure. Definitely the reason I haven't switched to Linux yet. I'm sure there's some way to force it to pick up the latest version, some Linux comrade will come in here at some point and tell us what that command is lol permalink fedilink source parent [–] beanlover@hexbear.net 1 point 2 weeks ago (5 children) I use the python module instead for this reason, but I think this is what you have to do to update yt-dlp when it's installed from apt: sudo yt-dlp -U permalink fedilink source parent hideshow 5 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] Infamousblt@hexbear.net 2 points 2 weeks ago For sure. Definitely the reason I haven't switched to Linux yet. I'm sure there's some way to force it to pick up the latest version, some Linux comrade will come in here at some point and tell us what that command is lol permalink fedilink source parent
[–] beanlover@hexbear.net 1 point 2 weeks ago (5 children) I use the python module instead for this reason, but I think this is what you have to do to update yt-dlp when it's installed from apt: sudo yt-dlp -U permalink fedilink source parent hideshow 5 child comments replies: [–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] Ildsaye@hexbear.net 2 points 2 weeks ago (4 children) I think that only applies if you've compiled it from source? System insists that since it is installed with apt, it must be updated with an apt command. But apt can't seem to understand that there are stable versions later than March, and I don't know how to teach it. permalink fedilink source parent hideshow 4 child comments replies: [–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] beanlover@hexbear.net 2 points 2 weeks ago (3 children) I'm not sure what the best solution will be for you. I think you can enable a 3rd-party repository that contains the most up-to-date version of yt-dlp. It's been discussed in the Mint forums, but they block my VPN from accessing the site :) https://forums.linuxmint.com/viewtopic.php?t=450307 https://forums.linuxmint.com/viewtopic.php?t=440928 If you are curious, this is how I use yt-dlp. Effort-post incoming, beware, and bare with me. It might seem complicated but I tried my best to simplify. When I run echo $PATH on my system, I see this: username@somepc:~$ echo $PATH /var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Your PATH might look more like /home/username/.local/bin. * If it does not include a /.local/bin, maybe send me your $PATH and I can recommend a substitution instead. What this means, is that any EXECUTABLE inside these directories will be executed if typed from the command line. So in order, you do this (yes, literally, $HOME, the terminal will convert that to your home directory): python3 -m venv "$HOME/.local/yt-dlp-venv" (create a virtual space for python3 outside of apt) source $HOME/.local/yt-dlp-venv/bin/activate (toggle the virtual space for python3 for the duration of the current terminal window) python3 -m pip install yt-dlp (install yt-dlp module inside the virtual space) nano $HOME/.local/bin/yt-dlp, paste this inside: #!/usr/bin/env bash source $HOME/.local/yt-dlp-venv/bin/activate pip install --upgrade yt-dlp yt-dlp "$@" You can use CTRL+O and CTRL+X to save and then quit. chmod +x $HOME/.local/bin/yt-dlp (give yourself permission to eXecute the command) Now any time you run yt-dlp from the terminal, it will search all of those directories inside $PATH until it finds yt-dlp. It will find your custom script, and correctly run the python venv's version of yt-dlp with any of the arguments you supplied. If you noticed and are curious, yt-dlp inside of $HOME/.local/bin/yt-dlp doesn't cause an infinite loop of it calling itself over and over again. Why? Because when you do source $HOME/.local/yt-dlp-venv/bin/activate, it changes your $PATH! (yt-dlp-venv) username@somepc:~$ echo $PATH /var/home/username/.local/yt-dlp-venv/bin:/var/home/username/.local/bin:/var/home/username/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin Because the real yt-dlp exists inside $HOME/.local/yt-dlp-venv/bin, it finds the executable first instead of the one inside $HOME/.local/bin permalink fedilink source parent hideshow 3 child comments replies: [–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] Ildsaye@hexbear.net 1 point 2 weeks ago (2 children) Thank you, I found this way before I saw your reply, although I have to sudo to run this installation of yt-dlp, which seems not ideal from a security perspective: wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/Downloads/yt-dlp chmod a+rx ~/Downloads/yt-dlp sudo mv -v ~/Downloads/yt-dlp /usr/local/bin sudo yt-dlp --update yt-dlp --version Since you went to the effort and I do want to understand my system better, I will study your explanation closely even though my video downloading woes are solved. permalink fedilink source parent hideshow 2 child comments replies: [–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[–] beanlover@hexbear.net 2 points 1 week ago (1 child) Nice! Can you send me this command's output? ls -la /usr/local/bin/yt-dlp I wonder if it's just the permissions that are jacked up permalink fedilink source parent hideshow 1 child comment replies: [+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent
[+] Ildsaye@hexbear.net 1 point 1 week ago* (last edited 1 week ago) [deleted] permalink fedilink source parent