Recherche avancée

Médias (91)

Autres articles (106)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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 (...)

  • 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 (11869)

  • Keep FFMPEG running and waiting for new image files to encode and stream

    28 janvier 2016, par user2165039

    I am converting TIFF images to HTTP Live Stream. The images are being continuously streamed by a camera and saved to hard drive. FFMPEG is then converting the files to MPEG transport stream (.ts) and segmenting them. However, as soon as FFMPEG runs out of currently saved images to disk, it ends the conversion. Is there a way how I could keep FFMPEG running and waiting for new images to be saved to disk and converting them ?

    This is what I am using :

    ffmpeg -f image2 -r 10/1 -i MMseries_%3d.jpg -c:v libx264 -r 30 -b:v 256000 -flags
       -global_header -map 0 -f segment -segment_time 4 -segment_list_size 0
       -segment_list demo_list.m3u8 -segment_format mpegts video_seg_%05d.ts
  • fftools/opt_common : switch to avcodec_get_supported_config()

    5 avril 2024, par Niklas Haas
    fftools/opt_common : switch to avcodec_get_supported_config()
    

    While rewriting this macro, I decided to make it a bit more flexible so
    it can work for all of the fields (including future fields) in a more
    generic way, and to also print the channel layout using an AVBPrint to
    avoid hard-coding the assumption that the length is less than 128
    characters.

    • [DH] fftools/opt_common.c
  • swscale/yuv2rgb : fix sws_getCoefficients for colorspace=0

    28 octobre 2023, par Niklas Haas
    swscale/yuv2rgb : fix sws_getCoefficients for colorspace=0
    

    The documentation states that invalid entries default to SWS_CS_DEFAULT.
    A value of 0 is not a valid SWS_CS_*, yet the code incorrectly
    hard-codes it to BT.709 coefficients instead of SWS_CS_DEFAULT.

    • [DH] libswscale/yuv2rgb.c