Recherche avancée

Médias (91)

Autres articles (49)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6429)

  • ffmpeg install on my machine but not display in phpinfo()

    17 février 2017, par Pratik Bachchhe

    ffmpeg extension not loaded in phpinfo() when I follow the steps below :

    Install FFMPEG on XAMPP

    • Download ffmpeg from here : https://ffmpeg.org/download.html
    • Copy php_ffmpeg.dll from the php5 folder to the C:\wamp\bin\php\php5.2.9-2\ext
    • Copy files from common to the windows/system32 folder
    • Add extension=php_ffmpeg.dll to php.ini file (\apache...php.ini)
    • Restart all services (Apache, PHP...)
    • Enable extension=php_ffmpeg.dll directive in your php.ini.
  • How to add filters to ffmpeg, mp

    20 novembre 2014, par Coderzelf

    I tried to use ffmpeg filter ’mp’ but it reports there is no such filter.

    what I tried :

    'ffmpeg -i input.avi -vf mp=ep2=xxx output.avi'

    And I build ffmpeg from this link :

    http://ffmpeg.org/download.html#LinuxBuilds

  • YouTube_dl doesn't find ffmpeg

    10 octobre 2019, par user702846

    I would like to download a set of youtube file as audio, mp3.

    import youtube_dl

    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       }],
    }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
       ydl.download(['https://www.youtube.com/watch?v=cmNEDz7YZSw'])

    It successfully download the file as m4a - however complains about ffmpeg installation.

    ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one.

    I do have ffmpeg installed and located at /usr/local/bin/ffmpeg and also have added to my PATH using

    os.environ["PATH"] += '/usr/local/bin/ffmpeg'

    but still the error is there. I am using MacOS Mojave and my ffmpeg specification are as following,

    fmpeg version 4.1.3 Copyright (c) 2000-2019 the FFmpeg developers
     built with Apple LLVM version 10.0.1 (clang-1001.0.46.4)
     configuration: --disable-encoder=vorbis --enable-libvorbis --enable-libmp3lame --disable-x86asm