
Recherche avancée
Autres articles (40)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5781)
-
libavcodec/jpeg2000_parser : Speed up long skips
20 mai 2022, par Tomas Härdin -
Any way to speed up this side by side video merging FFMPEG command ?
25 mai 2022, par JohnI am taking two mp4 videos and putting them side by side with a slight zoom so it looks better. Right now the best I get is speed at 7x which will still take a long time for an hour-long MP4 video (not to mention the size with ultrafast). Is there anything else I can do ? I thought maybe scaling and cropping first, then combining with copying video and audio but that doesn't appear to be faster.


ffmpeg -y -i input1.mp4 -i input2.mp4 -filter_complex "[0]scale=-2:720,crop=640:720[v0];[1]scale=-2:720,crop=640:720[v1];[v0][v1]hstack;[0:a][1:a]amerge[a]" -strict experimental -map 0:v -map '[a]' -ac 1 -preset ultrafast -vsync 0 output.mp4



-
FFmpeg change video speed with -r vs -filter and setpts
6 mai 2022, par simplesystemsIf I want to change the video speed with ffmpeg,


what exactly is the difference changing the fps :


ffmpeg -y -r 10 -i video.mp4 video_new_fps.mp4


or using filter and setpts :


ffmpeg -i video.mp4 -filter:v "setpts=PTS*3" -an video_new_fps.mp4


It seems that with both options I can speed up or slow down the video.


So which one should be used in which case ?