Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (71)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (11956)

  • ffmpeg, how to extract single frame, 0.5 seconds before the end ? [duplicate]

    24 avril 2020, par Tonny

    I've got a bunch (several 100) of videos (all different frame-rates and different lengths).
    
Each has an end-title during the last second of the video, that shows some important information I need to check.
    
Playing each video in a player, scrolling to the end and trying to pause it in the last second is just to cumbersome/time-consuming.
    
Grabbing a frame at that position and saving it as an image for each video lets me quickly check the info using the image-preview in my file-manager. Which is much more efficient.

    



    ffmpeg can capture single frames and write them to a jpg or png, but I am at a loss how to extract a frame in the middle of that title sequence. 0.5 seconds before the end of each video would be the sweet spot. (There is a animation effect during that 1 second sequence that makes the text in the video sometimes hard to read, but exactly in the middle the visibility is best.)
    
As far as I can tell ffmpeg can't use offsets "from the end", so I assume ffprobe is probably needed to analyze the video and on basis off that the correct ffmpeg command can be generated.

    



    I can handle the scripting around it to batch-process all the files.
    
Problem is that I'm very unfamiliar with video in general, ffmpeg and ffprobe in particular. I need some help to get started.
    
If someone can explain to me how to get from the full video 'clip.mp4' to the single frame 0.5 seconds before the end in 'clip_frame.jpg' I would be most grateful.

    


  • ffmpeg falls every 15 seconds

    23 avril 2020, par TiHan

    I have a problem with ffmpeg on virtual machine !

    



    here is my command

    



    ffmpeg -i rtsp://1.2.3.4/some_channel.sdp -f segment -strftime 1 -segment_time 60 ./%s.wav


    



    i have ffmpeg version 3.4.6

    



    everything work alright on simple PC. No stops. It works great !

    



    but on VM it falls every 15 seconds and the last message in the Terminal is

    



    


    size=N/A time=00:0014:97 bitrate=N/A speed = 1x
 video:0kB audio:468kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown

    


    



    size=N/A time=00:00:14.54 bitrate=N/A speed= 1x
[mp2 @ 0x5597df2fb940] overread, skip -7 enddists: -6 -6
[mp2 @ 0x5597df2fb940] overread, skip -6 enddists: -4 -4
Last message repeated 1 times
[mp2 @ 0x5597df2fb940] overread, skip -5 enddists: -2 -2
size=N/A time=00:00:15.01 bitrate=N/A speed= 1x
size=N/A time=00:00:15.01 bitrate=N/A speed= 1x
video:0kB audio:469kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown


    


  • ffmpeg skipping segments ahead and repeat freames from seconds ago

    13 avril 2020, par Jobber T

    Recently i have gain the re-broadcast right from a streamer , and mainly i just use ffmpeg to pull the .m3u8 streams from the channel and then push them to another channel . But I have a problem about ffmpeg re-broadcasting .

    



    My command is :

    



    ffmpeg -i "source_channel.m3u8" -c copy -f flv "rtmp://destiny_channel"


    



    And when re-broadcasting ffmpeg shows a lots of "skipping x segments ahead" , and in the re-broadcast channel , it playbacks from couples seconds ago (repeat the frames that already been played)

    



    Is there any way to set a cache like 10 mins or 100MB , then starts to push to destiny_channel ? or is there a way to avoid playback (don't repeat the frames)

    



    Right now i'm trying to save it as a flv file first and then stream the flv file to the destiny_channel , don't know if it can helps

    



    Thx