Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (54)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9355)

  • needed list of steps to make desktop as video streaming server using ffmpeg

    29 mai 2018, par vijayky88

    I am trying to run my Ubuntu machine as ffmpeg server. where i wanted to stream my local video over http.

    please suggest the list of complete commands and steps as well.

    Thanks in advance !

  • MAINTAINERS : add myself to the general developers list

    3 avril 2018, par Jun Zhao
    MAINTAINERS : add myself to the general developers list
    

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS
  • How to run ffmpeg in a scheduled batch file with a file exclusion list ?

    5 juin 2022, par MrZoops

    I have the following batch file created to run as a schedule task. It auto encodes the audio to AAC in my main media folder. Everything is working, but now I need to do 2 more things :

    &#xA;&#xA;

      &#xA;
    1. Delete the original upon completion.
    2. &#xA;

    3. Set it so that the next time it runs, it does not try to convert the already converted files.
    4. &#xA;

    &#xA;&#xA;

    Is that possible ? How would that look ? Is there a way to "disregard" file names with CONVERTED in them ?

    &#xA;&#xA;

    for /r "C:\Users\USER\Desktop\TEST" %%a in ("*.mkv") do ffmpeg -i "%%a" -vcodec copy -acodec aac -ac 2 -ab 256K %%~dpnaCONVERTED.mkv&#xA;

    &#xA;