Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (56)

  • 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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8644)

  • ffmpeg : fix memleak of bitstream filter context on failure

    24 septembre 2016, par James Almer
    ffmpeg : fix memleak of bitstream filter context on failure
    

    Increase the nb_bitstream_filters value as soon as the context is allocated, so
    if option parsing fails the last context is actually freed.

    Reviewed-by : Josh de Kock <josh@itanimul.li>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] ffmpeg_opt.c
  • os.path.join () on firstargv and list [closed]

    5 novembre 2019, par user243

    I am iterating through a directory and sorting the filenames based on time. These sorted filenames are then stored as a list. The directory is specified as firstargv

    I need to take each filename from the list and join it with the directory specified as firstargv creating an entire path so that I can pass it as file to ffprobe later for further process.

    Below is the code I am using but I am not getting desired result,

    import subprocess, sys, os

    firstarg=sys.argv[1]
    a = str(firstarg)
    time = sorted(os.listdir( a ), key=lambda s: s[9:])
    filename = time
    for y in filename:
       new_path = os.path.join(firstarg, *y)
    for z in new_path:
       p1 = subprocess.Popen (['ffprobe', '-i', z, '-show_entries', 'format=duration', '-sexagesimal', '-v', 'error', '-of', 'csv=%s' % ("p=0")], stdout=subprocess.PIPE)
       out = p1.communicate() [0]

    Any ideas here please ?

  • List of capture devices using FFmpeg libav* libraries

    11 février 2019, par esprittn

    Could anyone please tell me how can I obtain a list of devices using the FFmpeg libav* libraries like when I execute this ffmpeg command line :

    ffmpeg -list_devices true -f dshow -i dummy

    I am not referring to the Libav project.