
Recherche avancée
Autres articles (70)
-
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 -
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5786)
-
How to speed up the ffmpeg video compression in android ? [duplicate]
27 février 2017, par Anantha BabuThis question already has an answer here :
-
Fast Video Compression on Android
2 answers
I am using following command to compress video in android . But it takes more time. e.g
for
1 min video it takes 50sec to compress
.-y -i "+mInputPath+" -vf -s 640x480 -threads 5 -preset ultrafast -strict -2 "+mOutputPath.getAbsolutePath();
Does anyone know how to increase speed ?
-
Fast Video Compression on Android
-
How can I speed up this side by side video stitch in FFMPEG
21 octobre 2020, par ianfI have two videos the same size and pixel format (about 240x360) left and right that I want to stitch together.


I'm using :


ffmpeg -i left.mp4 -i right.mp4 -filter_complex "[0:v][1:v]hstack=inputs=2:shortest=1[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -ac 2 -shortest -y output.mp4



which takes about 15 seconds on a 3 core machine. I see x1.25 on the conversion line.


I know this isnt too bad, but any speed up I can make is going to help a lot as its in heavy use.


Any ideas how I can improve this ?


-
How to set audio speed to 0.3 in Ffmpeg ?
15 septembre 2020, par WebDivaI am using ffmpeg to set the audio and video speed to 0.3x. I can set the video speed but can't set the audio speed to 0.3x. Here is the command


ffmpeg -y -i video.mp4 -vf "setpts=PTS/0.3" -r 50 -c:v mpeg4 -b:v 1500k -af "atempo=0.3" output.mp4



It says :


Value 0.300000 for parameter 'tempo' out of range [0.5 - 100]



Is there a workaround ? Any help will be appreciated. Regards.