Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (37)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (6440)

  • Using FFMpeg to save an rtsp stream from a certain point in time

    14 août 2013, par Nir

    I would like to use FFMpeg to save a live stream from a certain offset. For example, "from timestamp 00:05 to 00:12".

    I know how to dump the stream to file (ffmpeg -i rtsp ://SRC -r 15 C :/file.mp4), the catch is how to clip it to the givem timestamp, if possible.

    Thanks !

  • How to dynamically save a video with ffmpeg without stopping recording ?

    11 janvier 2023, par MP_95

    I am trying to save a video using ffmpeg with image input from an http webservice. I was able to create the video with the command :
ffmpeg -i http://source -c:v libx264 -r 30 -preset ultrafast -updatefirst 1 -y output.mp4.

    


    However, the video is only actually made available when I stop recording.
Is there a procedure that would allow me to have the video available while recording as is the case using OpenCv's VideoWriter

    


  • FFmpeg HLS save original timestamps

    11 juillet 2016, par Ivan Kolesnikov

    I transcoding a video to HLS and everything works fine with the following command :

    ffmpeg -i source -vcodec nvenc -acodec copy -f ssegment -segment_list playlist.m3u8 -segment_list_flags +live -segment_time 60 -segment_list_size 10 out%03d.ts

    But when I want to save an original timestamps and add -copyts key to my commnad then I received new .ts file each 0.7 seconds(but I set it to 60 seconds -segment_time 60).
    How can I save an original timestamps with transcoding to HLS ?

    UPDATE : I tried this command and timestamps are saves fine :

    ffmpeg -i source.ts -vcodec nvenc -acodec copy -f hls -hls_time 10 -hls_list_size 5 -copyts playlist.m3u8

    But when I trying run this command for RTP input stream then I receive the following error : "Error while opening encoder for output stream #0:2 - maybe incorrect parameters such as bit_rate, rate, width or height".