
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (36)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7972)
-
Creating Video and Streaming Command Line
31 juillet 2024, par Brindha KanniahCurrently, using ffmpeg, I am using two commands on my Terminal to :



1) create a video from a bunch of images :



ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4




2) stream the video to a udp address :



ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550




I am trying to combine both these instructions into one command line instruction, using &&, as suggested in the answer to a previous question of mine :



ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4 \
&& ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550




but am encountering an error which prevents streaming :



[flv @ 0x7fa2ba800000] video stream discovered after head already parsed.




Thoughts on a different command line syntax to join the two instructions, different ffmpeg instruction (filters perhaps ?), and why I am getting the error ?


-
avcodec/vc1 : fix calculation of the last line of a slice
18 mai 2018, par Jerome Borsboomavcodec/vc1 : fix calculation of the last line of a slice
Only for the last slice of the first field is the last line of the slice
equal to the height of the field.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Is it possible to provide input files list to FFmpeg in a text file instead of on command line ? [closed]
15 juillet 2024, par ed22I need to provide many small file inputs to ffmpeg executable on command line and I am way beyond the maximum command length for the command line. I need to provide the input list as a file. Is it possible ?