
Recherche avancée
Autres articles (50)
-
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 (...) -
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. -
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 (...)
Sur d’autres sites (4921)
-
ffmpeg : How to Use Flip, Concat and Speed up Multiple Videos Together ?
5 août 2021, par ChhengRavyCode1 : Merge Videos


ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]" -vsync 2 -map "[v]" -map "[a]" output1.mp4



Code2 : Flip and Speed Up Video


ffmpeg -i outpu1.mp4 -filter_complex "[0:v]hflip,setpts=0.77*PTS;[0:a]atempo=1.3" output2.mp4



How can we combine that codes together ? Please Help Me !!!


-
ffmpeg colorspace conversion speed
5 mai 2017, par Mikhail NovikovI am running 2 ffmpeg commands on a fairly fast, GPU-enabled machine (AWS g2.2xlarge instance) :
ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p - | cat - >/dev/null
gives 524fps while
ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt argb - | cat - >/dev/null
just 101... it just shouldn’t, couldn’t take as much as 8ms per frame on a modern CPU, let alone GPU !
What am i doing wrong and how can i improve speed of this ?
PS : Now this is truly ridiculous !
ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p - | ffmpeg -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p -i - -s 1280x720 -r 30 -an -f rawvideo -pix_fmt argb - | cat - >/dev/null
makes 275 fps ! which is by far not perfect, but something i can live with.
why ?
Thanks !
-
FFmpeg command overlay watermark speed
3 septembre 2021, par user892134I currently use the following command to add a watermark to 2GB video. This takes around an hour. I'm wondering if i can speed this up in anyway.


ffmpeg -y -i input.mp4 -i watermark.png -filter_complex \"overlay=10:10\" -c:a copy -c:v libx264 -crf 22 -preset ultrafast output.mp4



I'm using preset
ultrafast
, is there another command which can add a watermark quicker than what i'm using ? If not, how can i change command to show watermark every nth frames that won't show flicker e.g. every 5 frames ?