Recherche avancée

Médias (3)

Mot : - Tags -/plugin

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 (9089)

  • update change log

    14 décembre 2013, par brandonaaron
    update change log
  • ffmpeg extract keyframes at scene change or at least every n seconds

    17 février 2020, par Laura

    I’m trying to extract key frames from an mp4 video file using ffmpeg. I need to extract a keyframe when a scene change is detected and, if no scene change is detecetd for ’n’ seconds a I need to extract a frame as well.

    I was able to extract scenes change (plus the first frame) using the following parameters :

    -vf scale='iw/8:ih/8' -deinterlace -ss 00:00:00.000 -vframes 1 $$UNIQUE_FILE_NAME$$_000.jpg -deinterlace -vf select='gt(scene\,0.4),scale=iw/8:ih/8',showinfo,metadata=print:file=frames-timestamps.txt -vsync vfr -frame_pts 1 $$UNIQUE_FILE_NAME$$_%d.jpg.

    I know how to extract periodic keyframes (https://www.bogotobogo.com/FFMpeg/ffmpeg_thumbnails_select_scene_iframe.php)

    ffmpeg -i yosemiteA.mp4 -f image2 -vf fps=fps=1/10 ythumb%3d.png

    Can anyone help me writing a unique command line that merges the two behaviours ?

    Thanks,
    Laura

  • How to change audio tempo and pitch individuality using ffmpeg ?

    25 août 2023, par Vipul Purohit

    I have managed to play audio files using ffmpeg and AudioTrack class in my android project. I can change the speed of audio using AudioTrack class setRate method. But it also change the pitch of audio, I want to change only Tempo of audio but I found no solution on net.

    



    anyone can please help me on this as there is no support for this.