Recherche avancée

Médias (91)

Autres articles (33)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (3513)

  • python3.6 ffmpeg call MacOSX (closed)

    30 mai 2020, par Awazleon

    I'm using Python 3.6 on MacOSX. I would like to use FFmpeg as Python sub-process. Everything works fine when using the OSX embedded Python 2.7 but using 3.6, this doesn't work.

    



    I get an error message because it doesn't find FFmepg :

    



    raise FFExecutableNotFoundError("Executable '{0}' not found".format(self.executable))
ffmpy.FFExecutableNotFoundError: Executable 'ffmpeg' not found


    



    I tried with ffmpy but I also got the same result by invoking FFmpeg directly :

    



    >>> from subprocess import call&#xA;>>> call(["ffmpeg"])&#xA;Traceback (most recent call last):&#xA;  File "", line 1, in <module>&#xA;    call(["ffmpeg"])&#xA;  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 267, in call&#xA;    with Popen(*popenargs, **kwargs) as p:&#xA;  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 707, in __init__&#xA;    restore_signals, start_new_session)&#xA;  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 1326, in _execute_child&#xA;    raise child_exception_type(errno_num, err_msg)&#xA;FileNotFoundError: [Errno 2] No such file or directory: &#x27;ffmpeg&#x27;&#xA;</module>

    &#xA;&#xA;

    I installed the FFmpeg lib. by using Brew through Terminal. It was well installed but only visible by Python 2.7, not 3.6.

    &#xA;&#xA;

    Calling it from terminal is working :

    &#xA;&#xA;

    $ ffmpeg&#xA;&#xA;ffmpeg version 3.2.4 Copyright (c) 2000-2017 the FFmpeg developers built with Apple LLVM version 8.0.0 (clang-800.0.42.1)&#xA;configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.4 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda&#xA;

    &#xA;&#xA;

    I'm not (yet) a Linux specialist but I think that a path is missing for 3.6 to find FFmpeg.

    &#xA;&#xA;

    Any clue to solve this annoying issue ?

    &#xA;

  • Cocoa pods did not found compatible version while doing pod install using ffmpeg-kit

    3 septembre 2022, par Pascal Musa

    I’m trying to pod install in react-native using an m1 MacBook Air . First I used Ffmpeg for react -native is superseded. So I use react-native fffmpeg- kit bun when trying to run pod install the terminal tells me that cocoa pods could not find compatible versions for pod mobile-ffmpeg. enter image description here

    &#xA;

  • Batch process all files in folder with ffmpeg ?

    19 novembre 2019, par Aron

    I am trying to create a loop that will process all .mp4 (gopro clips) in a folder, and output each converted file with the same filename as the original + the _r suffix. I puzzled together the below from various sources but can’t get it to work.

    for i in *.mp4; do ffmpeg -i "$i" -vf "hflip,vflip" "${i%.*}_r.mp4"; done

    Running the above gives the following error.

    *.mp4: No such file or directory

    What have I done wrong ?

    Yes, I am in the correct directory, and there are .mp4 files in in place.
    Ffmpeg is installed and runs correctly.
    Working in Mac terminal.