Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (103)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (15504)

  • Python + ffmpeg TypeError : not all arguments converted during string formatting

    21 mars 2017, par Sonic Motion

    I’m sending a file to a function in python, and trying to save the results to a variable, but I keep getting that error.

    I’ve looked over the other answers but nothing seems to fit. Any help is appreciated :

    def ffmpegLUFS(fileName):
       subprocess.Popen("ffmpeg -i %s -filter_complex ebur128 -f null - 2>&1 | grep -n '.*' | grep -A 5 'size' | grep 'I:' | cut -d ':' -f3-" % tuple(map(pipes.quote, sys.argv[1])),stdout=subprocess.PIPE,shell=True).communicate()[0]
       return
    Traceback (most recent call last):
     File "/Volumes/videos/videos/DROP_BIN/CHRIS/POD_Workflow_Files/WebContent_Audio.py", line 30, in <module>
       sourceLUFS = ffmpegLUFS(sys.argv[1])
     File "/Volumes/videos/videos/DROP_BIN/CHRIS/POD_Workflow_Files/WebContent_Audio.py", line 18, in ffmpegLUFS
       subprocess.Popen("ffmpeg -i %s -filter_complex ebur128 -f null - 2>&amp;1 | grep -n '.*' | grep -A 5 'size' | grep 'I:' | cut -d ':' -f3-" % tuple(map(pipes.quote, fileName)),stdout=subprocess.PIPE,shell=True).communicate()[0]
    TypeError: not all arguments converted during string formatting
    </module>
  • os_support : Don’t try to return the service name as a string in getnameinfo

    28 octobre 2015, par Martin Storsjö
    os_support : Don’t try to return the service name as a string in getnameinfo
    

    Some systems may be lacking getservbyport ; the previous ifdef wasn’t
    quite enough since it still assumed that struct servent was defined,
    as pointed out by Clément Gregoire.

    Simply remove the possibility to return non-numeric services in
    getnameinfo ; no caller of getnameinfo within libavformat
    currently try to use getnameinfo for retrieving the port number without
    NI_NUMERICSERV, and falling back on getservbyport may be non-threadsafe.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
    • [DBH] libavformat/os_support.c
  • avcodec/microdvddec : Check for string end in ’P’ case

    6 novembre 2015, par Michael Niedermayer
    avcodec/microdvddec : Check for string end in ’P’ case
    

    Fixes out of array read
    Fixes : a9502b60f4cecc19475382aee255f73c/asan_heap-oob_1e87fba_2548_a8ad47f6dde36644fe9cdc444d4632d0.sub

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/microdvddec.c