
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (31)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (4451)
-
`Buy` and `Download` links within playlist drawer
1er juin 2015, par scottschiller`Buy` and `Download` links within playlist drawer
-
ffmpeg download multiple m3u8 link from txt file
8 septembre 2023, par ShashankI have a list of multiple m3u8 links in a text file. I want to download m3u8 video using ffmpeg from m3u8_urls.txt and want to set output file name from another text file(output_name.txt).


I tried ffmpeg but I am able to download only one by one by changing link.


I want to loop that process automatically.


-
Multiple download trim videos ffmpeg + youtube-dl [duplicate]
4 décembre 2020, par sl4gI'm tryng to make a bash script to download and trim videos from URLs in a
.txt
file, usingffmpeg
andyoutube-dl
. From the Internet I found this https://askubuntu.com/questions/970629/how-to-download-a-portion-of-a-video-with-youtube-dl-or-something-else and this How can I batch/sequentially download m3u8 files using ffmpeg ? and based on that I made this :

#!/bin/bash

#only download the half of urls

HoldList="/home/user/desktop/dir1/code/bash/web.txt"

index=0
while read line ; do
 ffmpeg -ss 00:50:30 -to 00:51:00 -i "$(youtube-dl -f best --get-url $line)" -c:v copy -c:a copy output-${index}.mp4
 ((index=index+1))
done < "$HoldList"



This code only downloads half of the videos. Download one, ignore the next, then repeat...


How can I make not skip every other URL from the file ?


I'm a newbie in Bash script (and in this site), and English is not my first language.