
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 (61)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...)
Sur d’autres sites (13314)
-
libav/ffmpeg : where is data buffer storage ?
1er juillet 2020, par nguyenthachungI'm using libav/ffmpeg to play some DASH livestream.


My case : player is playing normally -> pause for 3 4 minutes -> play again -> Player continue to play without interrupted, not jump to realtime.


Is libav/ffmpeg cached buffer or stored to somewhere ?


-
One liner to create HLS stream
29 avril 2015, par hendryIIUC with HLS or DASH, I can create a manifest and serve the segments straight from my httpd, e.g.
python -m http.server
.I have a UVC video feed coming in on /dev/video1 and I’m battling to create a simple m3u8 in either gstreamer or ffmpeg.
I got as far as :
gst-launch-1.0 -e v4l2src device=/dev/video1 ! videoconvert ! x264enc ! mpegtsmux ! hlssink max-files=5
Any ideas ?
-
Add custom metadata tag to video file without altering anything else
9 juin 2020, par salgarjiI'm modifying DASH-formatted segments, and my aim is to add extra information to the video segment using metadata tags.



I'm using ffmpeg to record video from my webcam and store segments named like : init-video0-0.mp4 for the initial and video-0-0-N.mp4 for the following, where N is the segment number (beginning at N=1).



For ffmpeg to 'understand' video files, they must have a playable video file format, for that purpose I concat initial segment with Nth segment :



cat init-video-0-mp4 video0-0-N.mp4 > video0-0-N_mod.mp4




Once I have a proper/correct file, I can use ffmpeg to add tags.
I've tried the following command :



ffmpeg -y -i /path/to/file.mp4 -movflags use_metadata_tags -metadata customtag='whatEverYouWantToAdd' /path/to/new/file.mp4




My problem is that the ffmpeg modifies the file changing other information regarding start, duration, progressive and fragmented flags...



I've used this tool : https://download.tsi.telecom-paristech.fr/gpac/mp4box.js/filereader.html, to analyze my files in a more intuitive way :






Do you have any clue on how to add tags without altering DASH segments in any other way ? Even if it requires using another tool different from ffmpeg.



Thank you in advance !