
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (94)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
-
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (7090)
-
How to convert a series of images to video with crossfade in FFMPEG on Windows ?
17 juillet 2021, par Joe JobsI have a set of 40 images and I need to create a video where each image stays 5 seconds and then crossfades to the next.
I have found a way to transform the images into a video but each image stays for one single frame, I lowered the framerate to 1 FPS but still I need 5 seconds for each image and I need to crossfade between images.


This is the script I'm using now :


C:\Programs\FFMPEG\bin\ffmpeg.exe -r 1 -f image2 -s 1920x1080 -i %%03d.jpg -format yuv420p -crf 25 test.mp4



-
Can I capture a series of images named according to it's timestamp
26 juillet 2015, par GDPI am successfully capturing a screen shot every 15 seconds with the below command, but I need to correlate the images to where in the video the screen shot is from.
The %d gives me an integer, but is there a similar variable to include the timestamp of the image in the output file name ?
c:\ffmpeg\bin>ffmpeg -i c:\files\video.mp4 -vf fps=1/15 c:\images\image_%d.png";
Current output is :
c:\images\image1.png
c:\images\image2.png
c:\images\image3.png
....
c:\images\image999.pngDesired output is something like :
c:\images\image_00-00-00.png // Capture at start of video
c:\images\image_00-00-15.png // Capture at 00:00:15
c:\images\image_00-00-30.png // Capture at 00:00:30
c:\images\image_00-00-45.png // Capture at 00:00:45
c:\images\image_00-01-00.png // Capture at 00:01:00
....
c:\images\image_01-25-15.png // Last capture -
I am a newbie in FFmpeg and I am trying to use FFMPEG to play RTSP stream on Android, but it will play slower and slower
8 mai 2020, par AjaxI am a newbie in FFmpeg and I am trying to use FFMPEG to play RTSP stream on Android, but it will play slower and slower. The picture of my player and video source will increase with the time difference. The video are not synchronized. I'm pulling on the local area network。
The longer it is played, the more the picture of the video source will be. The more it cannot automatically return to the real-time picture like MediaCode's hardware decoding.The decoded picture is in slow motion, and it will freeze after a while.。What causes this ? How can i optimize it。
this is my code



2020-5-8/Problem has been solved