
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (21)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (4750)
-
Post processing in ffmpeg to move 'moov atom' in MP4 files (qt-faststart)
9 janvier 2023, par siliconpiIs it possible to run ffmpeg from the command line which will either place the 'moov atom' metadata in the beginning of the MP4 file or run the qt-faststart as a post processing operation in ffmpeg so the generated file is stream-able through the internet ?



I can of course run it as a separate command, but would prefer it to be something



- 

- as an option within ffmpeg, or
- as part of a post conversion, command line option when converting the video files via ffmpeg









Edit 1



http://ffmpeg.org/ffmpeg.html#mov





MOV / MP4 muxer

 

The muxer options are :

 

‘-moov_size bytes’



Reserves space for the moov atom at the beginning of the file instead of 
placing the moov atom at the end. If the space reserved is insufficient, 
muxing will fail.





-
Post processing in ffmpeg to move 'moov atom' in MP4 files (qt-faststart)
12 septembre 2014, par siliconpiIs it possible to run ffmpeg from the command line which will either place the ’moov atom’ metadata in the beginning of the MP4 file or run the qt-faststart as a post processing operation in ffmpeg so the generated file is stream-able through the internet ?
I can of course run it as a separate command, but would prefer it to be something
- as an option within ffmpeg, or
- as part of a post conversion, command line option when converting the video files via ffmpeg
Edit 1
http://ffmpeg.org/ffmpeg.html#mov
MOV / MP4 muxer
The muxer options are :
‘-moov_size bytes’
Reserves space for the moov atom at the beginning of the file instead of
placing the moov atom at the end. If the space reserved is insufficient,
muxing will fail. -
ffmpeg ignore PUT and does POST when sending -f segment chunks [closed]
5 novembre 2023, par l_-A-_lI cannot figure why ffmpeg does send chunck over PUT method when I use the -f dash (parameter) :


ffmpeg -nostats -nostdin -i - -f dash -seg_duration 1 -window_size 10 extra_window_size 2 -remove_at_exit 1 -use_timeline 1 -dash_segment_type webm -c:a libvorbis -b:a 128k -method PUT http://nginx/test/main.mpd



and refuses to PUT (and use POST instead) when I use -f segment :


ffmpeg -i - -vn -acodec copy -f segment -segment_time 5 -method PUT http://nginx/flux/segment_%3d.mp3



(I need to use the PUT method)