Recherche avancée

Médias (91)

Autres articles (51)

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

  • How to bookmark a video, to skip the video to a cetain duration ?

    17 août 2016, par Prasanth Kumar Arisetti

    I am encoding the incoming camera data, using x264 encoder and mpegtsmux to a filesink .ts files.

    I am pushing the buffers to the pipeline, using, g_signal_emi_by_name.

    Pipeline is something like this :

    gst-launch-1.0 v4l2src ! videoconvert ! video/x-raw,width=720,height=576,framerate=25/1 ! x264enc ! mpegtsmux ! filesink  location=test.ts

    Now, for that video, i would like to add bookmarks for certain duration to directly skip the video to that duration, when click on that duration.

    How can i add bookmarks to that video ?

  • ffmpeg command to insert the Static frames in a video, if the video has the gaps inside of it ?

    1er septembre 2020, par geo-freak

    I have a 10 min video file(.ts file), it has the gaps(empty video) from 4th min to 7th min. I want to insert the static frames from start of the gaps to end of the gap.

    


    I have a command to create the static video with null(silent) audio.

    


    ffmpeg -loop 1 -i img002.jpg -f lavfi -i anullsrc=channel_layout=5.1:sample_rate=48000 -c:v libx264 -t 10 -pix_fmt yuv420p -vf scale=480:320 -y output.ts


    


    I want to add this static video with silent audio in a a recording from specific period.

    


    How can I achieve it ?

    


    Thanks in advance.

    


  • How can i insert 10 seconds of silent audio(null audio without images or video or black video) into video repeat every 15 seconds with ffmpeg ?

    1er septembre 2018, par Adam Estel

    I have a clip video.mp4 . How can i insert 10 seconds of only silent audio into this clip repeat every 15 seconds until the end of this clip with ffmpeg ?
    I know anullsrc is an audio so i can’t use overlay filter. I research on google for a while but the only option i have is gte(mod(t,15),10)).

    Thank you.