Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (41)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

Sur d’autres sites (11424)

  • php_ffmpeg module not loading in Windows 7

    28 mars 2014, par Warwick

    PLEASE help me ! I have been searching for solutions for days !

    I am running Apache 2.2.22 and PHP 5.3.21 on Windows 7.

    I have extracted and copied php_ffmpeg.dll to C :\Program Files (x86)\PHP\ext ; copied avcodex-51.dll, avformat-51.dll, avutil-49.dll and pthreadGC2.dll to C :\Windows\System32 ; and added the extension=php_ffmpeg.dll directive to php.ini. However, the module is still not loading.

    I found the following error in the PHP error log :

    PHP Warning :  PHP Startup : Unable to load dynamic library 'C :\Program Files (x86)\PHP\ext\php_ffmpeg.dll' - The specified module could not be found.

    Any help would be dearly appreciated !

  • Getting frames from Video Windows Phone. FFmpeg Wrapper

    22 février 2016, par Danial Kashin

    I`m actually writing Application to make and edit GIFs from Video on Windows Phone 8.1. I`d like to get an array of Bitmaps from MediaClip(can be saved as videofile). I could use AForge, but it`s just for x86 only. I also tried using Lumia.Imaging, but not sure it can do what I want.
    I know FFMpeg is doing somethong like that, but I dont need to just save frames, but to use them as Bitmap array to then use every Bitmap as ByteArray.

    Here I read that there is absolutely no way to do what I want without writing my own code. Is it true ?
    Accessing & Manipulating video frames from .mp4 file in Windows Phone 7 app

    Thank you for any help. Ask for more detailed info.

  • ffmpeg c# Windows forms

    7 février 2017, par TODO

    I’m fairly new to windows forms and ffmpeg (unity background).

    I’m trying to get a button click on a windows form to take a png sequence, and convert it to an mp4 with ffmpeg.

           Process ffmpeg = new Process();

           ffmpeg.StartInfo.FileName = Path.Combine(Environment.CurrentDirectory, @"c:\test\ffmpeg.exe");

           ffmpeg.StartInfo.Arguments = "-framerate 25 -i 0001_IMG%03d.JPG -c:v libx264 -preset ultrafast -crf 0 -vf scale=-2:1080 -pix_fmt yuv420p temp.mp4";

           ffmpeg.Start();

    I have no problem running the same ffmpeg command from cmd, or from within a c++ console application I experimented with Using system("")

    I’ve been stuck on this for a little longer than I care to admit, and have tried searching for answers, but am still learning as i go.

    Any help would be much appreciated.