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 (11945)

  • 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
  • avutil/av_pix_fmt_swap_endianness : simplify and fix code

    7 mai 2013, par Michael Niedermayer
    avutil/av_pix_fmt_swap_endianness : simplify and fix code
    

    This makes the code also more robust, not having a hard-coded
    table that can become (and was) incomplete.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/pixdesc.c
  • How can I create a process that can be multiplied by a variable number ?

    18 octobre 2019, par Kaden

    A bit hard to explain this one, but I have an ingest of a variable amount of .mp4 files (sometimes it’s 30, other times it’s 10) and I need to have a subproccess.call('code', shell=True) for each of the .mp4 files that are being ingested into that folder. Each file has already been renamed in numeric order (1.mp4, 2.mp4, 3.mp4, etc...) and I can store the number of ingested files into a variable sumlines using the code
    with open(urls.txt", 'r') as file:     sumlines = sum(1 for _ in file)
    So my question is, is there a way I can use the variable sumlines to automatically subproccess call the exact number of files needed ?
    Find a screenshot here