Recherche avancée

Médias (91)

Autres articles (49)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

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

Sur d’autres sites (12756)

  • GStreamer equivalent to FFmpeg Remap

    16 février 2023, par Cole

    I currently have an FFmpeg command that looks like the following (i.e. uses the remap filter operation) :

    


    ffmpeg -y -i camera.mp4 -i x.pgm -i y.pgm -lavfi remap output.mp4


    


    I am now interested in doing this same processing in real-time using GStreamer.

    


    Does an equivalent GStreamer element exist ?

    


    If not, is there a way to use the FFmpeg remap filter inside of the GStreamer framework ?

    


  • What's the equivalent of "MP4Box -hint" in ffmpeg ?

    7 janvier 2023, par Roman Gaufman

    I currently run my ffmpeg command to record the video then afterwards run MP4Box -hint file.mp4 to make the file stream quicker for the web. Is there any way for ffmpeg to "hint" my file straightaway without the extra step ?

    


  • ffmpeg equivalent for sox -t ima

    14 décembre 2022, par LucasM

    I am trying to use ffmpeg to combine 1 audio file (ADPCM) and 1 video file (h264) into single mp4. Video by file conversion works fine but ffmpeg chokes on guessing audio input. I can't figure out how to tell ffmpeg which params to use to decode raw audio file.

    


    Currently I first run sox to convert raw audio to wav :

    


    sox -t ima -r 8000 audio.raw audio.wav


    


    ... then feed audio.wav from sox as ffmpeg input

    


    ffmpeg -i video.raw -i audio.wav movie.mp4


    


    I am trying to avoid sox step and use audio.raw in ffmpeg.

    


    Thank you