
Recherche avancée
Autres articles (15)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (1824)
-
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 : 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 : speed up AND rotate video
30 juillet 2021, par LFPGamingThis is my current script that I'm trying to use to speed up the playspeed and rotate my video by 90', but it doesn't work when I include the
transpose=1
argument.

"C:\ffmpeg-win64\bin\ffmpeg.exe" -i "C:\video1.mkv" -vf "setpts=PTS/60" "transpose=1" -an -crf 18 "C:\video2.mkv"



Script works without the transpose argument and speeds up my video perfectly, but Script won't run once I try to rotate the video by 90' and outputs an error :


Unable to find a suitable output format for 'transpose=1'
transpose=1: Invalid argument



Can anyone tell me where I'm going wrong ?