Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (70)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (4709)

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

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