
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (112)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (15013)
-
Is it possible to concatenate few videos together, setting their timings and displaying background image, if no video for the current frame ?
13 juillet 2020, par Valeryi CherdakovI have an audio track, say, a few minutes long, as well as several short videos of several tens of seconds. For each of these videos I have a timing - the video should start at a certain second. The audio tracks of these videos are not needed.
The output video should last exactly as long as the audio lasts.
If at the moment there is no video to display, a picture should be displayed (as if the picture is on layer #1, and the rest of the videos are on layer #2).


Is it possible to complete this task using a command or a series of ffmpeg commands ?


-
Converting videos in php without ffmpeg [on hold]
16 février 2016, par Matheus PradoI wanted to know if there is any way to convert videos in PHP without using ffmpeg. If you have no way, does anyone know of any API that makes converting videos and audios for free. In this case need something like http://[api host name]/convert ?target=[url to source]&output=[name of output file.your mime type] that by GET or by post with AJAX or cURL ?.
-
ffmpeg apad filter not creating equal length videos
29 mai 2021, par user10233170I am downloading videos off the internet with youtube-dl and then combining them into one big video with ffmpeg.


The problem is that the end result is always an out of sync video, because the downloaded videos have differently sized audio-/videostreams.


So I used apad to pad all of the videos with silence
ffmpeg -i VIDEO -filter_complex "apad" -shortest OUTPUT
. This does work and make the discrepancy between video and audio smaller, but there is still a small difference between audio (00:00:17.04) and video (00:00:17.07).

This adds up when combining a lot of videos and leads to the video again being out of sync.


Any input would be appreciated.