
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (32)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6842)
-
[Help]Delay in live streaming ?
14 septembre 2017, par user8583508I do not understand how they can make this video ?
enter link description here
Real time decreases over time, not directly ? -
How to programmatically adjust a folder of audio files so they are all about the same loudness ?
6 mars 2016, par Biagio ArobbaI have a website that collects audio recordings from visitors using Flash, I am using ffmpeg2theora to convert the files from FLV to OGG...because I am re-using the files for an HTML5 Web page (OGG is supported on Firefox and Chrome). But, some files are loud and some are really quiet.
Is there a way to make all the files sound about the same loudness ? It’s OK if the quality is poorer for the quieter audio files, just as long as it’s easier to hear the message that someone has left.
-
How do I pipe a stream to ffmpeg using the subprocess library
15 juin 2020, par JacksonUsing the following command I can pipe the stream data from streamlink to ffmpeg and save the stream as an mp4 file.



streamlink https://www.youtube.com/watch?v=UmclL6funN8 best -O | ffmpeg -i pipe:0 -c:v copy -c:a copy "test.mp4"




I would like to implement this inside a Python script but I am not able to get the stream to pipe into the ffmpeg process.



url = "https://www.youtube.com/watch?v=UmclL6funN8"
process = subprocess.Popen(("streamlink", url, "best", "-O"), stdout=subprocess.PIPE)
output = subprocess.check_output(('ffmpeg', '-i', 'pipe:0', '-c:v', 'copy', '-c:a', 'copy', "test.mp4"), stdin=process.stdout)




Can anyone see where I am going wrong ?