Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (53)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire 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 2011

    Contrairement à 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 2011

    Unfortunately 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 Niedermayer
    tools/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-5884436320681984

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/target_swr_fuzzer.c
  • ffmpeg set data stream codec tag when copying

    19 mars 2021, par user972014

    I use ffmpeg to copy a data stream from one file to the other using -c copy

    &#xA;

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

    &#xA;

    The name of the original stream was :

    &#xA;

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

    &#xA;

    While for the output file I get it is :

    &#xA;

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

    &#xA;

    I'm using a commandline similar to that :

    &#xA;

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

    &#xA;

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

    &#xA;

  • Remove error when running ffmpeg in Windows script to shrink MP3 file

    19 octobre 2022, par K7AAY

    I use a script to downsize audiobook files.
    &#xA;The original audiobook file was concatenated from multiple MP3 files into one MP3 file.
    &#xA;The script (in Windows) relies on ffmpeg (version git-2020-06-26-7447045) and contains

    &#xA;

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

    &#xA;

    However, this error message appears :

    &#xA;

    &#xA;

    deprecated pixel format used, make sure you did set range correctly
    &#xA;[mp3 @ 000001f026d56400] Frame rate very high for a muxer not efficiently supporting it.
    &#xA;Please consider specifying a lower framerate, a different muxer or -vsync 2

    &#xA;

    &#xA;

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

    &#xA;