Recherche avancée

Médias (91)

Autres articles (95)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (4895)

  • what is correct version of ffmpeg/gstreamer for python2.7.10 ?

    28 août 2015, par Janak Lal

    I am trying to write few programs in open cv with the help of the link. Capturing video from camera works perfectly but i have problem with "Playing Video from file" and "Saving a Video". There is something written about ffmpeg and gstreamer. I want to have link of ffmpeg and gstreamer for python 2.7.10 and proper way to install them so that those programs will run properly.

  • How to Speed Up Two-Pass Encoding ?

    27 juillet 2017, par Matt McManis

    I have a Video file with Audio, Subtitles, Chapters, and Metadata.

    I removed Audio and Subtitles with -an -sn from -pass 1 and then inlclude them in -pass 2.

    What about for Chapters and Metadata ? And how do you apply Turbo to -pass 1 ?

    Is there anything more that can be done ?


    I have a script that will convert mpg to mp4. I’ve sorted it with linebreaks so it’s easier to read.

    Pass 1

    "C:\Videos\example.mpg"

    -vcodec libx264
    -preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
    -vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
    -pass 1

    -map 0:v:0? -an -sn

    -threads 8

    "C:\Videos\example.mp4"

    Pass 2

    ffmpeg -y -i

    "C:\Videos\example.mpg"

    -vcodec libx264
    -preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
    -vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
    -pass 2

    -acodec aac
    -b:a 320k
    -af volume=1.2

    -map 0:v:0? -map 0:a:0? -map 0:s? -c:s copy -map_metadata 0

    -threads 8

    "C:\Videos\example.mp4"
  • Are there any resources listing current codecs and formats not supported by FFmpeg ?

    4 mars 2020, par Alexander Swann

    We are building a service where we do not know what format/codec a video uploaded by a user is in. Due to the nature of the application, we expect input video formats to be very fragmented, diverse and niche. We are currently using FFmpeg to transcode input formats to a consistent output (e.g. mp4).

    Due to the above scenario, I would like to establish a general list of what formats and codecs are not currently supported by FFmpeg. This is so I can research other open source video transcoding tools which I can utilise to fill in the gaps and allow our service to be more reliable for the user.

    Are there resources online that can help at least get a general idea of what might not be supported by FFmpeg ?