Recherche avancée

Médias (91)

Autres articles (46)

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

  • What tool can I use to analyze audio and clip webm files ? [closed]

    14 février, par Phillip Feldman

    I have a bunch of 2-3 hour long podcast webms from Youtube. I want to extract the audio from them, and programmatically analyze things like volume, or who's speaking. I then want to use my analysis to clip the original webms. What tools can I use to do this, and is size of the audio files something that I need to consider ? I know python and have used ffmpeg.

    


  • How can I capture/record screen of a specific Chrome's tab ?

    31 juillet 2020, par RedEyes

    I would like to capture/record the screen of a specific Google Chrome's tab using gdigrab.
I have tried the following cmd but no success.

    


    ffmpeg -f gdigrab -framerate 6 -i title= out.mpg


    


    When I play the returned result with ffplay, the video content captured is all in black or white.
My Chrome version is 84.0.4147.105 (Official Build) (64-bit).

    


    Any help would be appreciated.

    


  • How can i specify range of frames in ffmpeg shuffleframes filter [closed]

    26 juillet 2022, par liphone

    I need to duplicate a bunch of seconds in video and in official docs you can only input frames into shuffleframes filter like so

    


    ffmpeg -i  INPUT -vf "shuffleframes=0 1 2 3 4 5 6 7 ... 592 593 594 595 596 597 598 599 600" OUTPUT


    


    Is there any way to put it like in array ? Or maybe other method of shuffling frames in ffmpeg