Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (77)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11258)

  • 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".

  • 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

    


  • 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 !