Recherche avancée

Médias (91)

Autres articles (34)

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

  • How to stack videos horizontally with their audios combined in ffmpeg in nodejs ?

    5 novembre 2018, par Abhilash

    I have a video calling app which I have implemented using Kurento Media Server. With the Recorder Endpoints from kurento I am able to record the videos of caller and callee separately. After the call I want to combine the videos into a single video. I want to stack the videos horizontally and combine their audios. I have done this using ffmpeg from terminal using complex filters but I want to achieve the same thing using ffmpeg nodejs library. Please help me. Thanks in advance.

  • Second instance of ffmpeg for experimenting

    18 septembre 2014, par Brian Bennett

    I’m experimenting with databending/glitching images and videos as part of a master’s class. I’ve used Audacity to do most of it thus far, but it isn’t as successful with video.

    I want to try to edit video by changing the source codecs in ffmpeg, but I don’t want to inadvertently destroy my current install.

    Is it possible to install a second instance of ffmpeg to run independently for experimentation purposes ?

    If so, what Terminal command would I use to create a second, executable directory ?

  • How can I use ffmpeg with PHP's exec( ) command ?

    22 janvier 2012, par John Anderson

    I'm running Max OS 10.7, MAMP (PHP 5.3.6), with FFMPEG installed. I want to convert videos from one format to another. The following entered into Terminal works fine :

    ffmpeg -i /path/video.wmv /path/video.flv

    The file video.wmv is converted to video.flv. Great ! Now, this PHP line DOESN'T work :

    exec('ffmpeg -i /path/video.wmv /path/video.flv');

    Why ? I've spent many hours reading up on this and I still can't figure out what is wrong. I have read the other discussions on this topic and there is no clear answer. Any help would be greatly appreciated ! (PHP safe_mode is off).