Recherche avancée

Médias (91)

Autres articles (47)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (7574)

  • Do I need to open source my application If I use x264 through Android MediaCodec ? [closed]

    14 août 2019, par sanjay

    I want to encode some animation and save them as video. I want to use x264 Lib. But x264 license is GPL or commercial so I can not link with it directly without purchasing license. Do I need to opensource my app, If I use Android MediaCodec (https://developer.android.com/reference/android/media/MediaCodec) to encode which internally uses x264 ?

  • How to fix " Could not open codec 'libx264' : Unspecified error" ?

    3 février 2016, par Nakeun Choi

    I am using BeagleBone Black on my project. When I try x264 codec in my opencv code, it shows me error like this :

    [libx264 @ 0x2b1600] broken ffmpeg default settings detected
    [libx264 @ 0x2b1600] use an encoding preset (e.g. -vpre medium)
    [libx264 @ 0x2b1600] preset usage : -vpre -vpre
    [libx264 @ 0x2b1600] speed presets are listed in x264 —help
    [libx264 @ 0x2b1600] profile is optional ; x264 defaults to high
    Could not open codec ’libx264’ : Unspecified error

    How can I fix this ?
    I have to encode with h264 codec.

  • ffmpeg subprocess fail to open on OS X

    27 mai 2015, par Hyperion

    I’ve got this script :

    PATH = os.path.dirname(os.path.abspath(__file__))


    global TEMP
    for video in os.listdir(VIDEOS):
       ffmpeg = PATH + "/ffmpeg/ffmpeg"
       arg1 = " -v 0 -i "
       arg2 = VIDEOS + "/" + video
       arg3 = " -r 1 -f image2 "
       arg4 = TEMP + "/" + os.path.splitext(video)[0] + "-%d.jpg"
       subprocess.Popen(ffmpeg + arg1 + arg2 + arg3 + arg4).wait()

    that works perfectly on Windows (using ffmpeg.exe of course), but when I try to run it on Mac I got error :

     File "/Users/francesco/Desktop/untitled0.py", line 20, in Main
       subprocess.Popen(ffmpeg + arg1 + arg2 + arg3 + arg4).wait()

     File "subprocess.pyc", line 710, in __init__

     File "subprocess.pyc", line 1327, in _execute_child

    OSError: [Errno 2] No such file or directory

    I’ve tried to print ffmpeg + arg1 + arg2 + arg3 + arg4 and paste it manually in the terminal, nothing happens, it just stuck, but if I try to copy manually all the printed arguments, it works.