Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (76)

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

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

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

Sur d’autres sites (9288)

  • Revision cdc18067a4 : obj_int_extract.bat is not a generated file Trying to create Visual Studio proj

    29 janvier 2013, par Johann

    Changed Paths : Modify /libs.mk obj_int_extract.bat is not a generated file Trying to create Visual Studio project files would fail with : make[1] : *** No rule to make target `obj_int_extract.bat', needed by `.projects'. Stop. Change-Id : (...)

  • How to create a youtube like preview of video ?

    11 juin 2012, par Udhay

    enter image description hereHow to create a youtube like video preview ? That is in youtube, it is showing the preview of the video when we mouseover the progress bar ? How to do that kind of preview using ffmpeg or mencoder or is there any other way to do that ? Have a look at this image. Please go here for a live preview.

    http://www.youtube.com/watch?v=yto4_QFoLdA&feature=watch-now-button&wide=1

  • create thumbnail from video in ffmpeg

    6 mars 2016, par user1931441

    I have download ffmpeg from this link then extract to my localhost path :

    C :\wamp\www\ffmpeg-2.5.3\ffmpeg-2.5.3

    Then create a file : test.php in above path and write this code :

    // where ffmpeg is located
    $ffmpeg = 'http://localhost/ffmpeg-2.5.3/ffmpeg-2.5.3';
    /*//video dir
    $video = 'ww.flv';
    //where to save the image
    $image = 'image.jpg';
    //time to take screenshot at
    $interval = 5;
    //screenshot size
    $size = '640x480'; */
    //ffmpeg command
    $cmd = "$ffmpeg -i ww.flv -ss 00:00:14 -f image2 -vframes 1 out.png";
    exec($cmd);

    why my thumbnail not created ?
    please help me !
    thanks a lot...