Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread mason
> I did upgrade to a newer version of the Linux kernel since I last tried.  
Maybe that helped somehow?


I see no way in which the kernel version could make a difference here.

> Some of the comments here suggest that the problem is youtube-dl running  
with Python2, instead of Python3.


You can check whether or not this is the case.  Run

$ which youtube-dl

to determine the path of the executable (probably /usr/bin/youtube-dl) and  
open that file in a text editor.
 If the first line is "#!/usr/bin/python3" or "#!/usr/bin/env python3" then  
that means that when executed youtube-dl will be run with Python 3.  If you  
see "python" instead of "python3" then it will default to Python 2, and  
you'll need to either edit this line or explicitly run youtube-dl with  
python3.


In Debian and derivatives, /usr/bin/python is a symlink to /usr/bin/python2,  
so package maintainers make sure that programs requiring Python 3 explictly  
call python3.  You would only run into a problem when installing youtube-dl  
from a source other than the Trisquel repository. Eventually this will no  
longer be an issue.  Debian 11 will not package python2, so from that point  
on "python" will unambigiously refer to "python3" (at least until there's a  
python4 to worry about).


> Perhaps the Trisquel devs backport the latest versions?

IIRC the last time youtube-dl stopped working in Trisquel I did backport a  
newer version that worked, but no one has taken on the task of backporting  
each new version as it comes out or automating the process of doing so, which  
is what it would take to ensure that Trisquel's youtube-dl package always  
works.


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread strypey
Youtube-dl is now working again. I didn't follow any of the newer  
instructions above. But if I remember rightly, I did upgrade to a newer  
version of the Linux kernel since I last tried. Maybe that helped somehow?


Centurino
> The situation wouldn't be much better on other fixed-release distros, even  
those that are currently up-to-date.


Doesn't that depend on the cause of the problem? Some of the comments here  
suggest that the problem is youtube-dl running with Python2, instead of  
Python3. Since the EoL was announced for Python2 some time ago, I presume  
distros maintainers would have ensured that they shipped Python3 in newer  
versions, and made it the default version that Python programs use.


> They will quickly fall behind in their versions of youtube-dl and  
incompatibilities between the script and site APIs will surface.


That's not been my experience with youtube-dl on Flidas. Apart from this  
recent hiccup, it has always worked fine on YT or Invidious instances, as  
mentioned in the OP. Perhaps the Trisquel devs backport the latest versions?


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread centurino84
> So, would it be fair to say that this is another case of poor old Flidas  
showing it's age?


The situation wouldn't be much better on other fixed-release distros, even  
those that are currently up-to-date. They will quickly fall behind in their  
versions of youtube-dl and incompatibilities between the script and site APIs  
will surface. It's just a piece of software for which freezing doesn't work  
because it has to constantly keep up to date with numerous independent web  
services. Like I said, it's better for you to download it directly from the  
developers using the instructions on their website, that way you can always  
update it to the newest version.


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread Yoni Rabkin
vas19...@ya.ru writes:

> Why did you call python3 with youtube-dl?

Many issues reported about youtube-dl have their fix related to using
python3.

-- 
   "Cut your own wood and it will warm you twice"


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread strypey
So, would it be fair to say that this is another case of poor old Flidas  
showing it's age? I'm really looking forward to Etiona being released. Maybe  
I'll try youtube-dl on my test install of that.


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-22 Thread vas1980i

Why did you call python3 with youtube-dl?


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-21 Thread J.B. Nicholson

stry...@disintermedia.net.nz wrote:
Youtube-dl has always worked reliably on my Flidas systems. But in the last few days 
I noticed it failing to download videos from YT.


You don't say what version of youtube-dl you're running, but this version:

$ youtube-dl --version
2020.05.08

works fine to download https://www.youtube.com/watch?v=O3YP1TU-L_8

Perhaps you could download youtube-dl separately, chmod 700 that file, and run it (or 
update it then run it) to see if a later version would help you?


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-21 Thread centurino84
You are right, I did not know that. I have only been using Trisquel for 2  
weeks or so and I assumed that it's an option based on the output of  
youtube-dl. Still, there is a chance that OP installed pip from some  
third-party source and then youtube-dl through it, so I'll leave that post as  
it is.


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-21 Thread Yoni Rabkin
centurin...@protonmail.com writes:

> Did you install youtube-dl with pip or apt? I'd really recommend
> against using apt because the version in the repositories is really
> outdated and that's not good considering how often Google updates the
> API. If you installed it through pip, you can run:
>
> sudo pip install --upgrade youtube_dl

I don't think flidas has pip.

-- 
   "Cut your own wood and it will warm you twice"


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-21 Thread centurino84
Did you install youtube-dl with pip or apt? I'd really recommend against  
using apt because the version in the repositories is really outdated and  
that's not good considering how often Google updates the API. If you  
installed it through pip, you can run:


sudo pip install --upgrade youtube_dl

If you installed it through apt, you can run:

sudo apt remove youtube-dl

and follow the instructions at  
https://ytdl-org.github.io/youtube-dl/download.html, that is


sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O  
/usr/local/bin/youtube-dl


sudo chmod a+rx /usr/local/bin/youtube-dl

Then you'll be able to update simply with sudo youtube-dl -U


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-21 Thread Yoni Rabkin
stry...@disintermedia.net.nz writes:

> Thanks for the tip but it didn't work for me. Here's the output:
>
> strypey@Bishop:~$ sudo youtube-dl -U && python3 'which youtube-dl'
> "https://www.youtube.com/watch?v=O3YP1TU-L_8;
> [sudo] password for strypey:
> It looks like you installed youtube-dl with a package manager, pip,
> setup.py or a tarball. Please use that to update.
> python3: can't open file 'which youtube-dl': [Errno 2] No such file or
> directory

I would suggest trying to download an updated youtube-dl manually,
installing python3, and try to use python3 to run it as above, just to
see if that solves your issue.

I've been using this method for a long time now to see videos from
youtube when people send me links. I've noticed that without regularly
updating youtube-dl and without python3, I often would get errors.

-- 
   "Cut your own wood and it will warm you twice"


Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-20 Thread strypey

Thanks for the tip but it didn't work for me. Here's the output:

strypey@Bishop:~$ sudo youtube-dl -U && python3 'which youtube-dl'  
"https://www.youtube.com/watch?v=O3YP1TU-L_8;

[sudo] password for strypey:
It looks like you installed youtube-dl with a package manager, pip, setup.py  
or a tarball. Please use that to update.
python3: can't open file 'which youtube-dl': [Errno 2] No such file or  
directory




Re: [Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-20 Thread Yoni Rabkin


stry...@disintermedia.net.nz writes:

> Youtube-dl has always worked reliably on my Flidas systems. But in the
> last few days I noticed it failing to download videos from YT.
>
> Here's the terminal output:
>
> strypey@Bishop:~$ youtube-dl https://yewtu.be/watch?v=O3YP1TU-L_8
> [generic] watch?v=O3YP1TU-L_8: Requesting header
> WARNING: Could not send HEAD request to
> https://yewtu.be/watch?v=O3YP1TU-L_8: HTTP Error 503: Service
> Unavailable
> [generic] watch?v=O3YP1TU-L_8: Downloading webpage
> ERROR: Unable to download webpage: HTTP Error 503: Service Unavailable
> (caused by HTTPError()); please report this issue on
> https://yt-dl.org/bug . Make sure you are using the latest version;
> see  https://yt-dl.org/update  on how to update. Be sure to call
> youtube-dl with the --verbose flag and include its complete output.
> strypey@Bishop:~$ youtube-dl https://www.youtube.com/watch?v=O3YP1TU-L_8
> [youtube] O3YP1TU-L_8: Downloading webpage
> [youtube] O3YP1TU-L_8: Downloading video info webpage
> ERROR: O3YP1TU-L_8: YouTube said: This video is unavailable.
> strypey@Bishop:~$
>
> Yet I am watching this video using Invidio.us right now.

I'm on flidas as well. It works here after updating youtube-dl and by
calling python3:

sudo youtube-dl -U && python3 `which youtube-dl` 
"https://www.youtube.com/watch?v=O3YP1TU-L_8;

-- 
   "Cut your own wood and it will warm you twice"


[Trisquel-users] Youtube-dl failing to download on Flidas

2020-05-20 Thread strypey
Youtube-dl has always worked reliably on my Flidas systems. But in the last  
few days I noticed it failing to download videos from YT.


Here's the terminal output:

strypey@Bishop:~$ youtube-dl https://yewtu.be/watch?v=O3YP1TU-L_8
[generic] watch?v=O3YP1TU-L_8: Requesting header
WARNING: Could not send HEAD request to https://yewtu.be/watch?v=O3YP1TU-L_8:  
HTTP Error 503: Service Unavailable

[generic] watch?v=O3YP1TU-L_8: Downloading webpage
ERROR: Unable to download webpage: HTTP Error 503: Service Unavailable  
(caused by HTTPError()); please report this issue on https://yt-dl.org/bug .  
Make sure you are using the latest version; see  https://yt-dl.org/update  on  
how to update. Be sure to call youtube-dl with the --verbose flag and include  
its complete output.

strypey@Bishop:~$ youtube-dl https://www.youtube.com/watch?v=O3YP1TU-L_8
[youtube] O3YP1TU-L_8: Downloading webpage
[youtube] O3YP1TU-L_8: Downloading video info webpage
ERROR: O3YP1TU-L_8: YouTube said: This video is unavailable.
strypey@Bishop:~$

Yet I am watching this video using Invidio.us right now.


Re: [Trisquel-users] youtube-dl

2019-10-03 Thread alonivtsan
You can install youtube-dl without pip (just make sure you remove the package  
from the repos beforehand and that you have a suitable version of python  
installed):


sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o  
/usr/local/bin/youtube-dl

sudo chmod a+rx /usr/local/bin/youtube-dl


Re: [Trisquel-users] youtube-dl

2019-10-03 Thread David Philipe Gil
i use guix package manager for software id like to keep up to date on a rolling 
basis.-BEGIN PGP PUBLIC KEY BLOCK-
Comment: https://protonmail.com
Version: Pmcrypto Golang 0.0.1 (ddacebe0)

xsBNBFbq2OUBCACY4TYLB9KidY0Hkq6fIsRpfLauWHqROiL9l7PVJgR4Tbj2KS6D
gSzC+Ou4R3iT2ljG9x1F7IpZ8kldFYBZELyj9THQcuoCx2Biz/uLPgXOwPijn7Wt
b8u6+1VexZNQtzxwZb5eQSRBjtYdEU7aj8mso4izMgm2c345mzVgFc1/DF/spwp+
6Pbsgm4QNWSCdoORp6cAgZi3ZcxwycVYI1JVDy2+n+xW5MYiwBimbwSiaBONgnng
nfLM3+w/lzcWWSDtv2rU+iDHJhIcG5Sh3r87mdNcm9nVnb+7PHcvZfFFjazFoqpS
tbSszsJkVjPBQNL57nNeXFJiNJnXiAN4GK21ABEBAAHNM2RhdmlkcGdpbEBwcm90
b25tYWlsLmNvbSA8ZGF2aWRwZ2lsQHByb3Rvbm1haWwuY29tPsLAdQQQAQgAKQUC
WOU5NQYLCQcIAwIJEKZ7/hwQA6+gBBUICgIDFgIBAhkBAhsDAh4BAAB7IwgAlF2t
3LJQKpGI+6suYhxQLduiPYhIU5tpbs51eorkqm+1Pyz6xGNmGNNouUEXNfV56mVh
u40j1rhdvz3abwoBkqUFBQHziJX0xck3R1MAYNo10VYEQvthev37TcUY9qNb/lZ5
udeTR+G5yg2GfMsQhbExIAJxPETIxLgj7u0Y0Ab2LRz51C7t827EG2Nel8dyCw2y
7Z5y53iNddZ0Gxqfmjy19ETpPoXQ8kr4eOW1tQDrRkvicNM9wdjE0SrvoTDMygmK
pt40zWNgV540pBfKMCXTqchfvh8AV16XGmisvBU1VpNAFWgcgayqdbGhv81gbnNE
8l93HaWTjpgpZDAYnM7ATQRW6tjlAQgAtj5oRWmBADhRSii+vLNpJEinLo0IpEJ/
xALxWimQUVfxTjZ8WGAHIg9P75E9hszyjnfgMNZWbXMCpBPe60/Y/GOyvrgaEt6g
m1R5E+2SwePjIkVayXV7NI9vJsZF/BjPyAECd6IwrVOGsUQ9QtrAKQSUjPjG2JEc
/WB5BI0qhtwWGMxMgeUefDVAY//Q7uxP/509uU7jBPwPBhiImRTQPe+BhkmctnPo
C6lnw0G959kAvXoJwStt5ijHjuiAXKVi2scvQaBtogGYP1WNjNOXG43E0Yizcll3
CHjX5q2obXzdJMBBr0qPncoEE2NBpHp2/WvKWVR0SnlrkJK4WIkjgQARAQABwsBf
BBgBCAATBQJY5Tk1CRCme/4cEAOvoAIbDAAAaLAIAIQuHSfPTQisMxU6+mxaMCId
PeL4yspD2zoG/5NsSON3rTFDSSIqK6KpZ9kJeVctSGvuV4//90iuilDGcXsD/tz+
3+/86mP3NGfKaxc4ByfSaHDUC+usdBUoWGVmyxcUUwS4lDvrLAK8cULof/W9WXn4
FkdFtiDH+HbPGpjsM1lbU95FTTxjNWDkDyTxfhHFjF3UEPMSPNKFFjP4q+8TFy0t
Xa0filPxOqD2AGrOPHqs6HPmQ4i4kWeDICnKw8TbLICzvFKEGFRhghEgCyXBU5yq
TQn9mV+OzXKGJMPQ5vlXRH/VlWxRo44ceZnzgLvLiOEUKdyNeUGqOtGe9Qlp/Zk=
=0EC7
-END PGP PUBLIC KEY BLOCK-

Re: [Trisquel-users] youtube-dl

2019-10-03 Thread Narcis Garcia
El 3/10/19 a les 7:12, Caleb Herbert ha escrit:
> How do I keep youtube-dl up to date?  I need to download a channel for
> offline viewing..
> 

In other OS distributions I use python-pip to get up-to-date version of
youtube-dl.
BUT: pip searches and installs from the PyPi repository. This repository
contains proprietary software. Since Trisquel can't control what goes
into the PyPi repository, the only solution was to remove pip from
Trisquel.

An alternative to pip tool is to manually download package.tar.gz from:
https://pypi.org/project/youtube_dl/

# Supposing your package has been downloaded to your Downloads folder:
$ sudo apt install python-setuptools python3-setuptools
$ cd "$(xdg-user-dir DOWNLOAD)"
$ sudo rm -fr "$(ls -Fd youtube_dl-*/ 2>/dev/null)"
$ tar xf youtube_dl-*.tar.gz
$ cd "$(ls -Fd youtube_dl-*/)"
$ chmod +x setup.py
$ python ./setup.py build
$ sudo python ./setup.py install

The best desirable situation is to have a pip-like tool that excludes
proprietary software from searches and downloads.


[Trisquel-users] youtube-dl

2019-10-02 Thread Caleb Herbert
How do I keep youtube-dl up to date?  I need to download a channel for
offline viewing..

-- 
Caleb Herbert
KE0VVT
816-892-9669
https://bluehome.net/csh
<>

[Trisquel-users] youtube-dl unable to split audio from video.

2016-04-15 Thread freeworld4
WARNING: Your copy of avconv is outdated and unable to properly mux separate  
video and audio files, youtube-dl will download single file media. Update  
avconv to version 10-0 or newer to fix this.


Re: [Trisquel-users] youtube-dl

2013-04-12 Thread guojinqu
administration associated with knowledge from the replicate shoes this web  
site is recognized as discovering. Undoubtedly the actual Christian Louboutin  
United kingdom wide selection features a multitude of athletic shoes in a  
variety of colours as well as designs however regrettably from the extremely  
inexpensive selling price. michaelkorsoutlet-onlinesale.com  Therefore  
there's really excellent binocular which will trigger beauty the huge without  
having busting your own.chasing the fever of Christian Louboutin. When you  
see a red outsole you can definitely figure it out and say that is the  
Christian Louboutin shoes. Discount UGGSRed outsole has become the logo since  
it appeared. However, you can never forget the beauty that the Christian  
Louboutin brings to you. You don't even have to walk Christian Louboutin  
Store  out of the indoor circumstance, and your slim, beautiful and grace leg  
could easily catch people's eyes. Now you get thisThis man was complete to  
achieve women adored with shoes. Whatever he comes up with, its about  
affirmed to become a must-have basic and coveted by women all over the world.  
This brand sandal below is one of his rather archetypal designs and still  
theres something arresting about it. That abstract Michael Kors Purses  je ne  
sais quoi. The blooming red sole is the casting of every Louboutin shoe,  
highlighting womens lovely, admirable and not play complete sexy.are renowned  
for their quality and detailing. These red sole beauties might not come  
straight from the house of Louboutin's however they are at least in range of  
people who really want to own it. That is one detail which is here to stay  
and not change as Coach Outlet  per the season. People, who pick Christian  
Louboutin Replicas, also check the red sole as the first detail in their  
pairs. There are other things to watch out for in Christian Louboutin  
replicas.continue to remain for eternity. One such pair Christian Louboutin  
Shoes  is the Christian Louboutin Jolie Noeud Dorcet Blue Pumps with the  
asymmetric bow in the front. If you love the way the color blue can drive the  
blues away then reach out for this wonderful pair that can be linked with a  
monochromatic outfit preferably a gown or dress, or can be worn with another  
color teamed perfectly with it. This can be the kind of color, that you will  
associate with calmness of cool oceans,no I administrate not understand,  
acclaimed to everybody. Christian Louboutin Shoes architectonics achieve  
woman a lot added arresting and noblest, and this absolutely bloom aswell  
achieve woman far Michael Kors Bags  added attractive. In ceremony season,  
Christian Louboutin boots sale puts exhausted a new selection, it will  
accompany a lot of shock to folks. Christian Louboutin pumps in achievement  
abreast and hot, having a metal buzz, including a adaptable sole, 


Re: [Trisquel-users] youtube-dl

2012-11-28 Thread 1536310785
@*sheng1129.Der Mann l?uft schnell, Chi-Lang: meine sechs Br¨¹der wird  
heute auf, also ?ngstlich geworden. Zwei Personen nach  
http://www.dsquared2schuhe-outlet.de/  einer vorherigen Dr House Garden, der  
Mann pl?tzlich aufgeh?rt, Chi-Lang: sechs ins Haus! Ich wusste gar nicht,  
dass diese Person Akzent pl?tzlich ge?ndert, ist einem s¨¹dlichen Akzent:  
Ich bin nicht Sie, schauen Sie, wer ich bin. Sieben Franken, Akzent,  
erstaunt: Wow, peuterey jacken  du bist entweder Big Brother!  Ja, es ist  
mir.  Hallo, bist du, vielen Dank, belstaff outlet  sonst w?re ich  
gestorben. Sieht die sechs Franken und Darstellung der gleiche Mann, der es  
ist? Person lebt in Zhaotong Pr?fektur in Yunnan Zhaotong County West Wuli  
Dorf namens Tong Hui Ren Mingbing Worte. Sein Vater starb vor zwei Jahren.  
Mutter in unserem Haus, Whites Frau, einer verm?genden Familie, drei von uns  
hatte eine gute Harmonie. Ren Bing liebt ¨¹ben Kampfk¨¹nste seit seiner  
Kindheit, lernen eine woolrich jacken  kreative Gestaltung, 800 in der Gr??e  
ein wenig Ruf in der N?he. Ren Bing Vater entpuppt sich bei Tieren Handel  
werden, Le Bo war bei der Auswahl von feiner Pferden qualifizierten, Ren Bing  
folgte auch sein Vater, auch gerne mit Tieren peuterey outlet  spielen. Wann  
ist lebendig, Schulden zur¨¹ck in die Hauptstadt, Ren Bing beschlagnahmt  
wollte nicht zu konsumieren, ohne dass zu Hause, diskutieren Sie mit  
M¨¹tter und Frauen Vater: meine Reise nach Tokio, um Schulden, durch die  
Kreuzung zur¨¹ck au?en einige Pferde kaufen belstaff jacke  kann  
m?glicherweise Geld zu verdienen. Ren Bing Mutter sehr gl¨¹cklich, sagte  
Ren Bing: Geschwindigkeit, Geschwindigkeit zur¨¹ck, lassen Sie sich nicht  
von Menschen im Auge. Auf diese Weise kamen Ren Bing Links der Hauptstadt  
der Song-Dynastie nach Tokio in Yunnan.@*sheng1129. 


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Red Baptist
On Tue, 2012-10-30 at 20:00 +0100, aliasb...@gmail.com wrote:
 You can:
 
 1 - Install the deb corresponding to the newest version (but it may depend on 
  
 unavailable python packages).
 
 2 - Download it from the github already compiled :  
 https://github.com/rg3/youtube-dl/raw/master/youtube-dl
 
 and then just to this :
 
 sudo chmod +x /home/user/Downloads/youtube-dl
 sudo mv /home/user/Downloads/youtube-dl /usr/bin/youtube-dl
 
 And you are good to go.

I did these and just to make sure I have the latest version I did:

youtube-dl -U

-- 
Sent from Trisquel Gnu/Linux https://trisquel.info

Red Baptist
Blog: http://redbaptist.parlementum.net
Microblog: https://parlementum.net/redbaptist
XMPP: redbaptist [at] riseup [dot] net
 



Re: [Trisquel-users] youtube-dl

2012-10-31 Thread aliasbody

I tried that and I had problems. Youtube-dl stopped working :s..


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Red Baptist
On Wed, 2012-10-31 at 12:46 +0100, aliasb...@gmail.com wrote:
 I tried that and I had problems. Youtube-dl stopped working :s..

That is curious. I just tried mine a couple of hours ago and it worked.
Let me try again. 




Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Red Baptist
On Wed, 2012-10-31 at 12:46 +0100, aliasb...@gmail.com wrote:
 I tried that and I had problems. Youtube-dl stopped working :s..

Can you post what errors you're getting?

-- 
Sent from Trisquel Gnu/Linux https://trisquel.info

Red Baptist
Blog: http://redbaptist.parlementum.net
Microblog: https://parlementum.net/redbaptist
XMPP: redbaptist [at] riseup [dot] net
 



Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Fabian Rodriguez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le 12-10-31 07:33 AM, Red Baptist a écrit :
 On Tue, 2012-10-30 at 20:00 +0100, aliasb...@gmail.com wrote:
 You can:

 1 - Install the deb corresponding to the newest version (but it may
depend on
 unavailable python packages).

 2 - Download it from the github already compiled :
 https://github.com/rg3/youtube-dl/raw/master/youtube-dl

 and then just to this :

 sudo chmod +x /home/user/Downloads/youtube-dl
 sudo mv /home/user/Downloads/youtube-dl /usr/bin/youtube-dl

 And you are good to go.

 I did these and just to make sure I have the latest version I did:

 youtube-dl -U

Actually, that'd be:

sudo youtube-dl -U

F.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: PGP/Mime available upon request
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iEYEARECAAYFAlCReTYACgkQfUcTXFrypNU28wCeNG2FiWwpLugrpQuJw6HZA4ZJ
mn0AoMB6PprAZQLrF9ZpbIe6tpUWmdGu
=VNud
-END PGP SIGNATURE-



Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Red Baptist
On Wed, 2012-10-31 at 12:46 +0100, aliasb...@gmail.com wrote:
 I tried that and I had problems. Youtube-dl stopped working :s..

I was able to download a video from youtube

youtube-dl -o test4.ogg http://www.youtube.com/watch?v=ZDiSg42XaWI; 





Re: [Trisquel-users] youtube-dl

2012-10-31 Thread aliasbody

This is what happens here:

'''aliasbody@BodyTrisquel-PC:~$ youtube-dl --version'''
2011.08.04

'''aliasbody@BodyTrisquel-PC:~$ youtube-dl -U'''
ERROR: no write permissions on /usr/bin/youtube-dl

'''aliasbody@BodyTrisquel-PC:~$ sudo youtube-dl -U'''
Updating to latest stable version...
Updated to version











'''aliasbody@BodyTrisquel-PC:~$ youtube-dl --version'''
/usr/bin/youtube-dl: linha 1: Erreur de syntaxe près du symbole inattendu «  
newline »

/usr/bin/youtube-dl: linha 1: `

'''aliasbody@BodyTrisquel-PC:~$ youtube-dl'''
/usr/bin/youtube-dl: linha 1: Erreur de syntaxe près du symbole inattendu «  
newline »

/usr/bin/youtube-dl: linha 1: `'

'''aliasbody@BodyTrisquel-PC:~$ youtube-dl --help'''
/usr/bin/youtube-dl: linha 1: Erreur de syntaxe près du symbole inattendu «  
newline »

/usr/bin/youtube-dl: linha 1: `'

'''aliasbody@BodyTrisquel-PC:~$ sudo youtube-dl --help'''
/usr/bin/youtube-dl: 1: Syntax error: newline unexpected




Re: [Trisquel-users] youtube-dl

2012-10-31 Thread Alexander Stephen Thomas Ross
sudo echo 'youtube-dl -t -c --console-title --prefer-free-formats 
--srt-lang en --write-srt $@  exit' /usr/local/bin/vdl


If there is no subtitle then youtube-dl moans and does not download the 
video.


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread andrew . roffey
The youtube-dl updater has replaced itself with a HTML page (most likely 404)  
instead of another youtube-dl program.


Probably the best way to solve it would be to delete that youtube-dl binary  
and redownload from the youtube-dl website, manually.


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread aliasbody
This is what I've done to solve the problem. I was just being curious about  
the fact that most people had actually did this (with the original Trisquel  
package version ?).


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread nasrullah1983
I did install it and upgrade it.. it works perfectly .Thanks to all Trisquel  
devvelopers and users.


Re: [Trisquel-users] youtube-dl

2012-10-31 Thread aliasbody

You're welcome :D

If you can please support Trisquel with donations or by buying anything at  
http://libre.thinkpenguin.com (25% of the profits are reversed to the  
Trisquel Gnu/Linux Project).


Re: [Trisquel-users] youtube-dl

2012-10-30 Thread aliasbody

You can:

1 - Install the deb corresponding to the newest version (but it may depend on  
unavailable python packages).


2 - Download it from the github already compiled :  
https://github.com/rg3/youtube-dl/raw/master/youtube-dl


and then just to this :

sudo chmod +x /home/user/Downloads/youtube-dl
sudo mv /home/user/Downloads/youtube-dl /usr/bin/youtube-dl

And you are good to go.

PS: I've noticed that the older versions of youtube-dl could be open with a  
text editor but now anymore.. Don't know if it was a choice of compiling or a  
license change but I'm more about to believe in the first one since I don't  
see any change in the license.


[Trisquel-users] youtube-dl

2012-10-17 Thread ewlabonte
There's an old version of youtube-dl in the repositories. It doesn't work  
with most youtube videos. The latest version is 2012.10.09 and it works.


Re: [Trisquel-users] youtube-dl

2012-10-17 Thread Fabian Rodriguez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le 12-10-17 09:48 PM, ewlabo...@gmail.com a écrit :
 There's an old version of youtube-dl in the repositories. It doesn't work 
 with most youtube
videos. The latest version is 2012.10.09 and it works.

Just:
sudo youtube-dl -U

F.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: PGP/Mime available upon request
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iEYEARECAAYFAlB/bYAACgkQfUcTXFrypNXC1QCgi7SBKoHazzrcPPY9P5GQ3CUv
X0QAoKP5JdaXfeEp9PzHMvDQRlc5UiqD
=f2XW
-END PGP SIGNATURE-



Re: [Trisquel-users] youtube-dl

2012-10-17 Thread tegskywalker
I use this Greasemonkey script and modify to offer WebM in addition to MP4:  
http://userscripts.org/scripts/show/25105


Re: [Trisquel-users] youtube-dl

2012-10-17 Thread alonivtsan
UnPlug is a Mozilla browser plugin which finds videos on many websites  
including YouTube (it lets you download all the different versions of the  
video that are available such as 720P, 480P and WebM and H.264 formats).