Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (63)

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

  • PHP&FFMPEG, How to make sure the result video is suitable for web browsers ?

    30 juillet 2016, par Drupalist

    I need to split a section of a video, paste a logo and also blur a video online. I know how to do these but the problem is, I don’t know how to make sure that the result video is suitable for web. For example there is a mp4 video in my website which is playing via the browser, and using this code I cut a section of it :

    exec("ffmpeg -i ".$source." -ss ".$start." -to ".$end."  -c copy ".$newVideo);

    The problem is, when the distance between $start and $end is more than a few minutes, the split operation is done but it is not played via browser.

    What codec or library do I need to add as filter to make sure that the result video is always playing on all modern browsers ?

  • How to make robotic voice use ffmpeg

    8 août 2018, par Cuong Pham

    I can easily create it by using Vocoder option of Audacity software follow the video : https://www.youtube.com/watch?v=dXNrWrxIaRE&t=151s , but I want to make robotic voice from audio file by ffmpeg , Ffmpeg is realy big library so it’s hard for me. please help me !

  • ffmpeg to make mp4 container with opus audio

    30 novembre 2018, par stealthhawk

    I have audio in opus format and need to make mp4 container

    ffmpeg -i input.opus -c:a opus -strict experimental output.mp4

    Throws Could not find tag for codec opus in stream

    What is wrong here ?