
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (84)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...)
Sur d’autres sites (10956)
-
How to use ffmpeg with h.265 (or h.264) codec ?
6 octobre 2022, par randomuser1Normally I start recording the camera image with the command :



ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4



but I'm not sure which coded do I use in here (I'm just beginning my adventure with ffmpeg), however I found on this webpage this command :



ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov



But when I run it - I get the following error :

INPUT: No such file or directory"



I changed the INPUT word above also to
0
, so the command is


ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov
,
but error stays similar (0: no such file or directory
).
How can I grab the camera image and save it to a file while using the H.265 ?

-
ffmpeg Drawtext with timer not working
8 octobre 2017, par codeulffmpeg Drawtext with timer not working.
Here’s my CLI code :
ffmpeg -t 20 -i song.mp3 -i bluebg.jpg -s "1280*720" -movflags +faststart -y vwithaudio.mp4
ffmpeg -i vwithaudio.mp4 -vf "drawtext=enable='between(t,1,10)':fontsize=30:fontcolor=white:fontfile=pathtoofontfontfile.ttf: text='Test Text'" -acodec copy -y timerdemo.mp4No errors displayed at console.
However, the text would not appear.
I noticed that in the first command if I use a
mp4
instead ofbluebg.jpg
, it works. So why cannot I use a background image for the first video so that drawtext timer works ?Would appreciate help from experts.
Thanks in advance.
-
FFMpeg takes up the whole cpu and spams log on bug encounter
16 octobre 2017, par Robert VangorI have FFMpeg working on backend of website converting image + music to video. Every once in a while (probably 1/200 files), someone uploads something and cpu is always at 100% spamming error into log and filling up the whole space on drive, making the app unusable.
I have literally at least a bilion lines of this in log
[png @ 0x50f0700] Invalid PNG signature 0x2020202020202020.
Error while decoding stream #0:0: Invalid data found when processing inputHere is an example of command that caused it this time :
ffmpeg -y -v error -loop 1 -r 1 -i image.png -i song.mp3 -vcodec libx264 -acodec copy -vf scale=trunc(iw/2)*2:trunc(ih/2)*2 -preset ultrafast -r 1 -shortest output.mp4
What can I do if I don’t have a control over files that get converted ?