
Recherche avancée
Autres articles (106)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (8129)
-
ffmmpeg output filename manipulation - extract every n seconds and put time of frame in output file
27 août 2022, par Fat RobertI have an mpg file. I want to extract a frame every 'n' seconds (example below every 2 minutes) and make a filename that matches the frame time + the start time. Can I do this in ffmpeg.


ffmpeg -i '20220804 - 091910_3.mpg' -vf fps=1/120 ../test_video_images/OUTFILE03d.jpg


I sse that part of the output as the command executes has time info :


frame= 1 fps=0.1 q=5.3 size=N/A time=00:02:00.00 bitrate=N/A speed= 15x


Can I get to the time variable and append it onto the output name ?


Regards,


-
FFMPEG : First seconds of video from RTSP stream are frozen
18 août 2022, par Christopher WilkeI am running a basic FFMPEG RTSP stream command :


ffmpeg -rtsp_transprt tcp -i rtsp://someurl:8554/mystream recording.mp4



The video seems to be frozen for the first seconds. Why is that ? Can I do something to prevent this ?


-
How can I hold last frame of the video for several seconds with ffmpeg
29 décembre 2017, par Ana KoridzeI want to hold last frame of the video for some more seconds so that I can overlay another video on it with ffmpeg.
I have tried
- extracting last frame
- make it last some seconds
- and concatenating it with video.
This works fine, although when I test on Android overlay video freezes and I believe the reason must be the static image because I also tried overlaying video on a static image and had the same problem.
Now I was thinking maybe I could just hold the last frame of the video with ffmpeg ?
Here is the command
ffmpeg -i video.mp4 -loop 1 -t 10 -i image.png -i overlay.mp4 -filter_complex [0:v][1:v]concat[a];[2:v]pad=1280.0:720:(ow-iw)/2:(oh-ih)/2,setpts=PTS+7/TB[b];[a][b]blend=all_mode='addition':all_opacity=1,format=yuva422p10le -y output.mp4