
Recherche avancée
Autres articles (58)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11937)
-
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 !