
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 (105)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (11239)
-
avformat/matroskadec : Don't copy attached pictures
17 mai 2019, par Andreas Rheinhardt -
How to setting pictures and audio to mp4 ffmpeg ?
25 juin 2015, par Jhon LemmonI’m trying to set some pictures and audio to
mp4
usingffmpeg
I tried with these commands :
-i %02.png -pix_fmt yub420p -vcodec mjpeg -qmin 1 -qmax 1 -r 25 -i loop.pm3 -ar 22050 -ab 192k -aframes 25 -shortest out.mp4
-r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy out.mp4
-r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy -strict -experimental out.mp4
-r 60 -f image2 -i %02.png -i loop.mp3 -map 0 -c:v libx264 -vpre -acodec copy -strict -2 out.mp4
Some commands create the
out.mp4
file, but I can’t seem to reproduce them in Android
I just want to know the correct command to set a pictures group and an audio to a video -
How to use FFMPEG to add different pictures into one video
24 juillet 2012, par user1546926What I want to do is to display different pictures on specific time periods of the video.
I have got a solution which is using FFMPEG to split the video into several components and then adding pictures as watermark into those components, and finally join them together.
However, I don't think it is very efficient when tackling with large videos.
Any idea ? doesn't need to be done in a single command, could even be a script. thanks in advance.
this is what I did :
Codes for adding watermark
ffmpeg -ss 00:00:00 -t 00:01:30 -i test.mpg -vf "movie=logo1.png [watermark];[in]
[watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out1.avi
ffmpeg -ss 00:01:30 -t 00:03:00 -i test.mpg -vf "movie=logo2.png [watermark];[in]
[watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out2.aviCodes for joining avi(running on Windows)
copy out1.avi /b + out2.avi /b output.avi /b