
Recherche avancée
Autres articles (20)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6298)
-
Video speed slow down in FMPEG
8 janvier 2019, par DiegoI am trying do bit slow video speed slow down which H264 format in fmpeg at android,When I run below code, it makes slowly and makes error.
String[] cmd3 = {"-i",h264_path,"-filter:v","setpts=1.25*PTS",h264_new_path};
try {
executeCommand(cmd3);
}
catch(FFmpegCommandAlreadyRunningException e) {
e.printStackTrace();
} -
ffmpeg - Speed up rtsp stream conversion to mp4
9 janvier 2019, par miejscovI want to ask if it is possible to speed up converting RTSP stream to mp4 file ?
For example 1 minute segment takes 1 minute to download and convert, that’s too long. What depends on speed of conversion ?My ffmpeg command looks like this :
ffmpeg -ss 05:05:00 -i rtsp://test:test@0.0.0.0:000/vod/camera -t 00:01:10 -s 720x480 -c:v libx264 -acodec copy "destination.mp4"
-
How to make a PAN faster/slower speed with FFmpeg ?
27 février 2019, par Duty AlexI have an image named "input.png" 1920x7580 px and i want to make a PAN across it from top to bottom. My current code is :
ffmpeg -loop 1 -i input.png -vf crop=1920:1080:0:n -frames:v 6500 out.mkv
My video duration with this default speed is 4:20 (260 second). The scrolling down speed is 25 pixels per second.
How i increase/decrease this speed without changing the video FPS (25 fps) ? For example my video duration to be 3 minutes.
Thank you !