
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (35)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4083)
-
How to merge videos and add audio in a single command using ffmpeg ?
9 janvier 2017, par harishkumar329I use the following commands to concat audio-less video files to one and add audio to it,
To concat individual videos,
ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -i 5.mp4 -filter_complex 'concat=n=5:v=1:a=0[out]' -map '[out]' -strict -2 -y video_withoutaudio.mp4
To add audio,
ffmpeg -i video_withoutaudio.mp4 -i audio.mp4 -c:v copy -c:a aac -strict -2 video_withaudio.mp4
is there a way to combine these two commands to one ?
My requirement is to optimise the commands as I have 1000+ commands taking a lot of time to complete, hoping combining these two to one will save some time.
Thanks in advance !
-
Merge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’
15 juillet 2013, par Michael NiedermayerMerge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’
* commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’ :
mov : Seek back if overreading an individual atomConflicts :
libavformat/mov.c
See : 6093960ae35c8d69c559b5604f683c2ea3f279ca
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
I need to take a live video stream from wowza and convert it to a JPEG Push for display in HTML5
10 septembre 2015, par scott m gardnerI have a live video feed that currently is served by a Wowza server as an RMTP stream. I need to create an Motion JPEG, or JPEG push stream to HTML5. I have FFMpeg, and have used it to generate individual frames from a video file, but do not know how to put it all together. Or how to package the frames together for transmission to the client.
I am guessing that I will have to do some coding on the server side to package everything up. I will do this in Java or Scala. And on the client to handle the un packaging and display to the canvas in JavaScript.