
Recherche avancée
Autres articles (98)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (7655)
-
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 !
-
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"
-
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();
}