Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (23)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (3639)

  • hevc : do generic validation of bitstream

    10 août 2014, par Christophe Gisquet
    hevc : do generic validation of bitstream
    

    After finishing parsing VPS/SPS/PPS/slice header, check remaining bits,
    and if an overconsumption occurred, report invalid data.

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

    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc_ps.c
  • BASH recursive go trough all subdirectories and if a specific file existis, touch all files from one type in this directory [duplicate]

    20 décembre 2023, par mkirbst

    I have a music collection of the structure Interpret -> Album -> song1.m4a song2.m4a cover.jpg

    &#xA;

    I can use ffmpeg to add the cover.jpg to the files :

    &#xA;

    #! /bin/bash&#xA;&#xA;COVER=./cover.jpg&#xA;&#xA;if test -f "${COVER}"&#xA;then&#xA;    for f in ./*.m4a&#xA;    do&#xA;        echo "Adding ${COVER} for ${f}"&#xA;        mv ${f} tmp.m4a&#xA;        ffmpeg -i tmp.m4a -i ${COVER} -map_metadata 0 -map 0 -map 1 -acodec copy ${f} &amp;&amp; rm tmp.m4a&#xA;    done&#xA;else&#xA;    echo "No ${COVER} found. Aborting..."&#xA;fi&#xA;

    &#xA;

    How can I modify my script to do that ?

    &#xA;

    What it does : when there is a cover.jpg in the folder, then add this folder lossless to all m4a audio files.&#xA;BUT : It seems that this does not work for all folders. It would be nice to just cd to the main music folder instead of going to every album folder and run the script above by hand.

    &#xA;

    What it should do :

    &#xA;

      &#xA;
    1. go to every subfolder
    2. &#xA;

    3. if there is a cover.jpg file then proceed at 3. if not go to step 1. (next subfolder)
    4. &#xA;

    5. for every m4a in this folder embed the cover.jpg into every m4a file in this subfolder
    6. &#xA;

    &#xA;

  • Evolution #3450 : déporter apple-touch-icon.png et autres variantes vers le plugin favicon

    8 novembre 2015, par b b

    Voir aussi #2745 qui intègre la règle pour la redirection des favicons itrucs dans le htaccess de SPIP.

    S’appuyer sur un plugin pour cette fonctionnalité permettrait de ne pas avoir de code spécifique à une marque dans le core et de mettre à jour la fonctionnalité indépendamment du core, mais...

    L’approche utilisée par le plugin est intéressante (utilisation de insert_head pour déclarer les favicons), mais elle ne semble pas prendre pas en charge l’accès direct aux différents favicons. Du coup, il faudrait tout de même garder les règles de redirection nécessaires dans le htaccess.