Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (105)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (9740)

  • avcodec/ffv1dec_template : Optimize common case in run mode

    23 mai 2019, par Michael Niedermayer
    avcodec/ffv1dec_template : Optimize common case in run mode
    

    Fixes : Timeout (14sec -> 9sec)
    Fixes : 13398/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-5664106709778432

    decode_line() becomes 1% faster for fate/vsynth2-ffv1.avi
    for another fate sample there is a 0.5% speedup
    the effect should be bigger for files with "flat" colored areas
    the new faster branch is used in 97-100% of the cases in fate samples
    compared to the older more complex (which i tested)

    vsynth3-ffv1-v3-bgr0.avi had the lowest percentual useage of about 97%

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

    • [DH] libavcodec/ffv1dec_template.c
  • Revert "lavf/utils : Allow url credentials to contain a slash."

    5 mai 2019, par Marton Balint
    Revert "lavf/utils : Allow url credentials to contain a slash."
    

    This reverts commit dd06f022b07438d650c82255dff16908ba04244a.

    Fixes ticket #7871 and reopens ticket #7816.

    The introduced regression caused URL's with @ in them to be parsed incorrectly
    which is a bigger issue then not being able to specify the slash character as a
    password.

    I think there are better ways to fix the original issue, like being able to
    specify HTTP username and password as a protocol option, or adding a protocol
    option to percent-decode the URL first.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/utils.c
  • FFmpeg (HLS) - Split segments by size rather than time (or limit segment size)

    28 février 2019, par iMostLiked

    So I have a ffmpeg command with the following parameters (in NodeJS, but it doesn’t matter) :

    '-start_number 0',
    '-hls_key_info_file ' + HLSKEY_PATH,
    '-hls_time 5',
    '-hls_playlist_type vod',
    '-hls_segment_filename seg-%d.ts'

    Everything’s working fine, but there’s a problem with the size of each segment.
    Why can’t ffmpeg create segments by size rather than time ? In this case -hls_time 5. I was hoping doing something like -hls_size 4096 but there’s no option for that, at least from what I know. Or can I at least set a limit ? Like : "Don’t create segments bigger than 4MB, split them again if necessary."

    I know I could encode the file again and then there wouldn’t be segments which vary in size that much, but this is no option and alternative for me.

    Thanks in advance !