Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (41)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (5264)

  • ffmpeg unable to find encoder libvpx

    6 octobre 2023, par Wiz

    when i run

    



    ffmpeg -y -i test.mov -threads 8 -f webm -aspect 16:9 -vcodec libvpx -deinterlace -g 120 -level 216 -profile 0 -qmax 42 -qmin 10 -rc_buf_aggressivity 0.95 -vb 2M -acodec libvorbis -aq 90 -ac 2 OUTPUT_FILE.webm


    



    it returns an error saying Unknown encoder 'libvpx'

    



    I installed libvpx, libvorbis, libogg, and ffmpeg all via macports

    


  • ffmpeg unable to find encoder libvpx

    24 février 2015, par Wiz

    when i run

    ffmpeg -y -i test.mov -threads 8 -f webm -aspect 16:9 -vcodec libvpx -deinterlace -g 120 -level 216 -profile 0 -qmax 42 -qmin 10 -rc_buf_aggressivity 0.95 -vb 2M -acodec libvorbis -aq 90 -ac 2 OUTPUT_FILE.webm

    it returns an error saying Unknown encoder 'libvpx'

    I installed libvpx, libvorbis, libogg, and ffmpeg all via macports

  • Extract audio stream of a .ts file onto a different format

    7 juin 2019, par Skyleft

    I have a .ts audio file and I want to convert it to a .wav file without losing quality.

    This is what I have tried :

    ffmpeg -i audio.ts -vn -acodec copy audio.wav

    This does return a .wav file, but I’m not sure if what I’m doing is optimal or if there’s anything I can do to end up with a file of better quality. Unfortunately there are many formats such as .aac that I can’t work with.

    Lastly, although this returns a .wav file, it is pretty buggy. It won’t play with the windows player, and the only way to listen to it will be by dragging it onto a browser. If I try to advance the audio it will cut off immediately, and it will also not replay unless I refresh the page.
    I’m assuming these problems have to do with the way I’m converting it, but I don’t know how to avoid them.

    Thank you.