Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (100)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11826)

  • pydub no ffprobe found

    21 septembre 2019, par Virgil Sisoe

    I have an app for MacOS that is compiled with py2app. The app uses the pydub module and the latter uses ffmpeg family package.

    The problem is that once I compile the app and move it to a different OS, the subprocess call from pydub fails to find any of the ffmpeg packages even though they are installed in /usr/local/bin.

    If I launch the app from terminal ./Nameapp.app/Contents/MacOs/Nameapp then it runs no problem, but if I launch it with double click then pydub complains not finding the packages and the app hangs where ffmpeg/ffprobe should do the work.

    I can see that pydub searches in the /usr/local/bin only if launched from terminal, otherwise no. If I add /usr/local/bin to PATH, pydub doesnt complain anymore that it doesnt find ffmpeg/ffprobe, but it still gives me an error for both ffmpeg and ffprobe : [Errno 2] No such file or directory:.

    If I hardcode the path pydub.AudioSegment.converter = "/usr/local/bin/ffmpeg", the app gives me only ffprobe error [Errno 2] No such file or directory:'ffprobe': 'ffprobe'.

    On some other posts i’ve seen pydub.AudioSegment.ffprobe = "/path/to/ffprobe" but it doesnt seem to work in my case ?

    So my two questions are :

    How to hardcode the ffprobe path in pydub ?
    How to solve this without hardcoding path ?

  • Ghosting with ffmpeg lenscorrection

    19 juillet 2018, par Anmol Mishra

    AE has optics correction that offers the correct mapping for flat 3d to 180 vr 3d. This is for the 90 FOV on Oculus Go and Gear VR.

    https://imgur.com/PbSD7mg

    I tried to do this using lenscorrection in ffmpeg but ended up with ghosting and a cropped image..

    https://imgur.com/SKw1ycx

    This was the command used

    ffmpeg -i /Volumes/500GB/Untitled\ 01.mov -vf lenscorrection=k1=-0.6:k2=0.55 -crf 18 out.mp4

    Any ideas why ?

  • Infinite stream of images with node

    29 septembre 2016, par shilch

    I am creating a node server that reads images from the webcam with opencv and does some face recognition. The processed image should be sent to the browser.
    First I though of using websockets and sending each frame, but this was not efficient and slow.
    Now I am thinking of using the html video element and using a video stream. So I create this stream in node and put each new frame into this stream, so that it will be displayed in the video element. I have two questions regarding this idea :

    1. Are infinite video streams possible ? (not flash, should work in chrome)
    2. Is there any library to create this stream easily ? I read of a library called ’ffmpeg’. Can it do the job ?

    Of course I am open for other ideas :)

    Thank you in advance !