Jamendo Ogg Vorbis direct downloader
This is a shell script that allows you to download music from jamendo.com in Ogg Vorbis format directly and easily (even multiple albums) - all you need to know is the album id (since 1.1 you can just paste the album urls on the command line).
Requirements
- php5-cli
- wget
Tested on Linux, probably will work on other platforms supported by php-cli and wget as well.
The script (version 1.1)
ckjamendooggdl.php (line 1)
- #!/usr/bin/php -q
- <?php
- /*
- CkJamendoOggDl - downloads albums from jamendo.com in OGG Vorbis format
- Copyright (C) 2010-2011 Łukasz "Cyber Killer" Korpalski
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- if($_SERVER["argc"] > 1)
- {
- for($num=1; $num<=($_SERVER["argc"]-1); $num++)
- {
- system("wget --trust-server-names http://www.jamendo.com/get/album/id/album/archiverestricted/redirect/" . $albumid[0] . "/?p2pnet=bittorrent\&are=ogg3");
- }
- }
- else
- {
- }
- ?>
Just click grab to save the file, or copy&paste it yourself to your favorite editor. Remember to add executable permissions.
License
This program is under GNU GPLv3 or later.
Special thanks
I'd like to thank Karol „Zal” Zalewski for showing me how to force downloading Vorbis files directly from Jamendo. Great thanks to Jamendo for providing such a great service, but you could add an option to download ogg Vorbis files normally ;-P.

There are no comments on this page. [Add comment]