
Recherche avancée
Autres articles (50)
-
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 (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (6475)
-
ffmpeg - recode to lower bitrate + remove audio + watermark
26 avril 2014, par Ove SundbergI’m a complete noob to ffmpeg and I’m trying to do a couple of things in the same call :
1) recode a video to a lower bitrate
2) remove audio
3) add a watermark center bottom
4) save output as .webm
With a bit of RTFM and scouring for examples I have managed to achieve of 1, 2 and 4 with :
ffmpeg -i hires.mp4 -c:v libvpx -crf 10 -b:v 128k -r 24 -an -c:a libvorbis output-file.webm
This call adds a watermark center bottom :
ffmpeg -i hires.mp4 -i watermark.png -filter_complex "overlay=main_w/2-overlay_w/2:main_h-overlay_h-10" output-file.webm
Now I struggle to combine the two. The second -i option is the watermark. Therefore I would have thought that
ffmpeg -i hires.mp4 -c:v libvpx -crf 10 -b:v 128k -r 24 -an -c:a libvorbis -i watermark.png -filter_complex "overlay=main_w/2-overlay_w/2:main_h-overlay_h-10" output-file.webm
would do the trick. It does not off course, the error I get is
Option b:v (video bitrate (please use -b:v)) cannot be applied to input file watermark.png -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to. Error parsing options for input file watermark.png. Error opening input files: Error number -22 occurred
So I have the options all messed up. I’ve tried moving the options around but with no luck. I’d really appreciate some help here.
-
How to merge two files with ffmpeg without
21 février 2014, par Elias GranjaI would like to merge two files with ffmpeg, but instead to simple add one video to the end of the other, I want that both videos play at same time with one video using all the screen, and the other a small square at the right-bottom at the screen(it`s something like the hangout screen).
Is this possible ?
Thanks,
-
ffmpeg create video with logo and subtext
13 mars 2018, par DM1974I would like to do the following in order
- Create a mp4 video from new for say 30 seconds
- add a logo at the top left or right
- also add text at the bottom, so at time = 0 it says "Hello" time = 5 it says "Goodbye" and have these displayed for a little duration...
Could I do this in one call to ffmpeg, or would I need to do it in three steps ?
How can I combine these steps together ?Thanks