
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (14968)
-
Révision 99882 : Revert de r99881 finalement car wikipedia indique que l’abbréviation de numéro es...
10 octobre 2016, par marcimat@rezo.nethttps://fr.wikipedia.org/wiki/%E2%84%96 … bon… tant pis pour le title du coup.
-
ffmpeg slide showing corrupted
20 février 2020, par devcrazyI’m trying to use ffmpeg to create a slide showing video from bulk images.
I tested with 3 images and the names are0.jpg, 1.jpg, 2.jpg
I assigned 5 seconds per slide and the video length is 15s.
I executed the following command
ffmpeg -r 0.2 -i tmp/%d.jpg -vcodec mpeg4 -y myslide.mp4
Of course, it seems all the things are normal and the video file is created.
But when I play it, the last slide are not shown. As I change the video players, occurred the same thing. Some players are corrupted when the progress is in last slide.
Why is this happened ? Wrong parameters ? -
How to get ffmpeg split results in a streaming-like way ?
15 décembre 2016, par AlexMy goal is to transfer video files to another peer using webRTC and play it in real time on web page. In case of lag, I decided to split video files before tranferring. I’m using ffmpeg (actually a javascript version here) to split videos using commands like
ffmpeg -i input.mp4 -codec copy -map 0 -f segment out%0d.mp4
, which will get a series of output files at the same time. But I want to transfer the output files one by one and start to play them in right order before getting all output files, can i do that ?