Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (111)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11510)

  • avformat/img2enc : remove av_dup_packet() call

    26 septembre 2017, par James Almer
    avformat/img2enc : remove av_dup_packet() call
    

    It's unnecessary after a call to av_packet_ref().

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/img2enc.c
  • Call ffmpeg overlay filter from a c++ program

    20 mars 2013, par Dan Monson

    I am writing a program and I want to implement a way to overlay an image with another image using ffmpeg. I know how to do it with the command line, but is there a way to include some ffmpeg files into my program and call the overly function ?

  • python : subprocess call ffmpeg (command line)

    21 septembre 2014, par user3295674

    I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line input

    ffmpeg -r 10 -i frame%03d.png -r ntsc movie.mpg

    To work inside a subprocess.call()

    I tried the following with no success :

    subprocess.call('ffmpeg -r 10 -i %s frame%03.d.png - r ntsc movie.mpg')

    Any thoughts ? Do I separate out different commands, do I specify string, integer etc. with %s, %d ?