
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (53)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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) (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4641)
-
tools/target_swr_fuzzer : do not use negative numbers of samples
30 novembre 2024, par Michael Niedermayertools/target_swr_fuzzer : do not use negative numbers of samples
Fixes : signed integer overflow : -277109688 * 8 cannot be represented in type 'int'
Fixes : 376118159/clusterfuzz-testcase-minimized-ffmpeg_SWR_fuzzer-5884436320681984Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
ffmpeg set data stream codec tag when copying
19 mars 2021, par user972014I use
ffmpeg
to copy a data stream from one file to the other using-c copy


The problem is that it causes the output file to have no codec tag string. How can I set it ?


The name of the original stream was :


Stream #0:3(eng): Data: none (gpmd / 0x646D7067), 96 kb/s (default)
 Metadata:
 creation_time : 2020-09-08 16:35:49
 handler_name : GoPro MET



While for the output file I get it is :


Stream #0:2[0x102]: Data: bin_data ([6][0][0][0] / 0x0006)



I'm using a commandline similar to that :


ffmpeg -i video.mp4 -map 0:3 -c copy -metadata:s:d codec_tag=xxxx -vcodec libx264 converted4.ts



I also tried handler=... handler_name=...


-
Remove error when running ffmpeg in Windows script to shrink MP3 file
19 octobre 2022, par K7AAYI use a script to downsize audiobook files.

The original audiobook file was concatenated from multiple MP3 files into one MP3 file.

The script (in Windows) relies on ffmpeg (version git-2020-06-26-7447045) and contains

FOR %%A IN (dir *.mp3) DO ffmpeg -i "%%A" -c:a libmp3lame -q:a 8 "_%%A"



However, this error message appears :




deprecated pixel format used, make sure you did set range correctly

[mp3 @ 000001f026d56400] Frame rate very high for a muxer not efficiently supporting it.

Please consider specifying a lower framerate, a different muxer or -vsync 2



How do I modify the script for greater efficiency and remove that error message ?