
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (57)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7991)
-
complex ffmpeg command line to Node fluent ffmpeg
13 février 2017, par FaellorI have read the other question on command line input to Node Fluent ffmpeg but the command I am trying to execute is more complex and any ideas are appreciated.
ffmpeg -i cut2.mp4 -c copy -an nosound2.mp4 && ffmpeg -i nosound2.mp4 -vf reverse reversednosound2.mp4 && ffmpeg -f concat -i inputs.txt -vcodec copy -acodec copy 2sec.mp4
It is far from optimal because I am saving every video created with middle steps. I need to pipe the output of one command to the other command but I have no idea on how to do that with Node fluent-ffmpeg module.
Any attempts to write this command with Node fluent-ffmpeg is greatly appreciated
-
Convert mp3 to wav on the fly using ffmpeg in Python
14 mars 2014, par user3013067I'm trying to convert a mp3 file on the fly in Python to wav file using ffmpeg.
I call it using subprocess, how can I get it's output to play it as wav on the fly wthout saving it as the file (or playing it while its converting) and then playing it ?
This is what I have so far :
I'm using aplay just for a example.
FileLocation = "/home/file.mp3"
subprocess.call(["ffmpeg", "-i", FileLocation etc etc "newfail.wav"])
os.system("aplay ... ") #play it on the fly hereAs far as I understand, if I put "-" as file name, it will output it instead to stdout, but I don't know how to read stdout...
-
Can I use ffmpeg to encode a procedurally generated video for livestream ?
19 mai 2020, par Mei ZhangI have a python script that continuously generates images (frames of a video).



I would normally save these images to files and then convert them to a video with ffmpeg using the command line. What additional steps are required to adapt this workflow for livestreaming ?



Instead of saving the frames to files I would like to stream them to, say, YouTube, and my script could potentially run indefinitely generating frames of the video.



I'm looking for general guidelines so I can Google more details myself. I assume video platforms like YouTube have some API where I can send data for livestreaming. I have no idea what type of data format such API would expect, but I assume that just sending every single frame to the API is not how this is done.



Would I need to encode my frames in memory using some library ? Can I use ffmpeg for that ?