
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (53)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9884)
-
Revision 43d04ef93b : Merge "Revert "test_libvpx : disable pthreads in gtest""
21 juin 2013, par James ZernMerge "Revert "test_libvpx : disable pthreads in gtest""
-
ffmpeg : Fix typos in the comment for decode() ("." vs. "->")
6 juillet 2017, par Wan-Teh Changffmpeg : Fix typos in the comment for decode() ("." vs. "->")
pkt is a pointer, so it should be dereferenced with the -> operator.
Signed-off-by : Wan-Teh Chang <wtc@google.com>
Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
How to download multiple videos from an input ".txt" file with ".m3u8" links through FFMPEG and GPU acceleration
16 février 2023, par Fab98I have a file .txt which contains multiple source links like :


https://videosource1.m3u8

https://videosource2.m3u8



.


.


.


And I want to download all of them using FFMPEG with a script/bash or any for/while cycle.


I tried with this command but with no success, knowing I'm using GPU acceleration :


for %i in (path_txt_file\file.txt\*.m3u8) do ffmpeg -i "%i" -c:v hevc_nvenc -rc constqp -qp 31 -c:a aac -b:a 64k -ac 1 "output_path\%~ni.mp4"