Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (103)

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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7935)

  • avcodec/ac3enc : Avoid calculating the CRC multiple times

    8 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Avoid calculating the CRC multiple times
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3enc.c
  • avformat/dashdec : avoid calling strlen multiple times

    12 décembre 2021, par Limin Wang
    avformat/dashdec : avoid calling strlen multiple times
    

    Reviewed-by : Steven Liu <liuqi05@kuaishou.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/dashdec.c
  • Store arguments of a command in variable [duplicate]

    2 décembre 2022, par user206904

    I am trying to store the arguments of a command in a string instead of calling the function directly with the parameters but it seems that Powershell is not handling the string properly

    &#xA;

    ffmpeg -v quiet -stats ...  # works&#xA;&#xA;$var = "-v quiet -stats"&#xA;&#xA;ffmpeg $var ... #does not work&#xA;

    &#xA;

    I get :

    &#xA;

    Unrecognized option 'v quiet'. Error splitting the argument list : Option not found

    &#xA;

    What is the correct way to handle this ?

    &#xA;

    Thanks

    &#xA;