Voici un site recensant pas mal d’émissions tv disponible en streaming/flash du genre JT ou les guignols.
Bref enjoy
emissionstele.gorisse.com/
Hello,
pour ceux que ça intéresse j’ai un petit script sympas pour télécharger tous ça automatiquement
#!/bin/bash
#
# But: Telecharger les videos en streaming sur canalplus.fr
#
# Auteur : Forum Ubuntu
# Modification : KippiX
#
#
#set -x
ID="kippix"
HISTORIQUE=/home/$ID/Canal+/.cplus_hist
if [ ! -d "/home/$ID/Canal+" ]; then mkdir /home/$ID/Canal+;fi
if [ ! -d "/home/$ID/Canal+/guignols" ]; then mkdir /home/$ID/Canal+/guignols;fi
if [ ! -d "/home/$ID/Canal+/dimanche+" ]; then mkdir /home/$ID/Canal+/dimanche+;fi
if [ ! -d "/home/$ID/Canal+/zapping" ]; then mkdir /home/$ID/Canal+/zapping;fi
if [ ! -d "/home/$ID/Canal+/groland" ]; then mkdir /home/$ID/Canal+/groland;fi
if [ ! -f $HISTORIQUE ]; then touch $HISTORIQUE; fi
function dl_cplus
{
VIDEOS=$( wget -q -O - $1 | tr "/." "\n" | grep "_image_L" | sed -e 's/_image_L/_video_H.flv/g' )
for VIDEO in $VIDEOS; do
echo -n $VIDEO"... "
grep -q $VIDEO $HISTORIQUE
if [ $? -eq 1 ]; then
echo $VIDEO >> $HISTORIQUE
wget -q -nc "http://vod-flash.canalplus.fr/"$VIDEO
echo "Fini."
else
echo "Video deja existante"
fi
done
}
# Guignols
cd "/home/$ID/Canal+/guignols"
dl_cplus "http://www.canalplus.fr/index.php?pid=1784"
# Dimanche+
#cd "/home/$ID/Canal+/dimanche+"
#dl_cplus "http://www.canalplus.fr/index.php?pid=1895"
#Groland
cd "/home/$ID/Canal+/groland"
dl_cplus "http://www.canalplus.fr/index.php?pid=1787"
# Zapping
cd "/home/$ID/Canal+/zapping"
dl_cplus "http://www.canalplus.fr/index.php?pid=1830"
++
Sympa ce script
Existe t-il un tel script pour récupérer les vidéos de m6 replay ?
[quote=“kippix2”]Hello,
pour ceux que ça intéresse j’ai un petit script sympas pour télécharger tous ça automatiquement
#!/bin/bash
#
# But: Telecharger les videos en streaming sur canalplus.fr
#
# Auteur : Forum Ubuntu
# Modification : KippiX
#
#
#set -x
ID="kippix"
HISTORIQUE=/home/$ID/Canal+/.cplus_hist
if [ ! -d "/home/$ID/Canal+" ]; then mkdir /home/$ID/Canal+;fi
if [ ! -d "/home/$ID/Canal+/guignols" ]; then mkdir /home/$ID/Canal+/guignols;fi
if [ ! -d "/home/$ID/Canal+/dimanche+" ]; then mkdir /home/$ID/Canal+/dimanche+;fi
if [ ! -d "/home/$ID/Canal+/zapping" ]; then mkdir /home/$ID/Canal+/zapping;fi
if [ ! -d "/home/$ID/Canal+/groland" ]; then mkdir /home/$ID/Canal+/groland;fi
if [ ! -f $HISTORIQUE ]; then touch $HISTORIQUE; fi
function dl_cplus
{
VIDEOS=$( wget -q -O - $1 | tr "/." "\n" | grep "_image_L" | sed -e 's/_image_L/_video_H.flv/g' )
for VIDEO in $VIDEOS; do
echo -n $VIDEO"... "
grep -q $VIDEO $HISTORIQUE
if [ $? -eq 1 ]; then
echo $VIDEO >> $HISTORIQUE
wget -q -nc "http://vod-flash.canalplus.fr/"$VIDEO
echo "Fini."
else
echo "Video deja existante"
fi
done
}
# Guignols
cd "/home/$ID/Canal+/guignols"
dl_cplus "http://www.canalplus.fr/index.php?pid=1784"
# Dimanche+
#cd "/home/$ID/Canal+/dimanche+"
#dl_cplus "http://www.canalplus.fr/index.php?pid=1895"
#Groland
cd "/home/$ID/Canal+/groland"
dl_cplus "http://www.canalplus.fr/index.php?pid=1787"
# Zapping
cd "/home/$ID/Canal+/zapping"
dl_cplus "http://www.canalplus.fr/index.php?pid=1830"
++[/quote]
Bonne idée mais, sans effacer le présent, peux-tu porter ce script ds le fil idoine en post-it.