
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (68)
-
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 (...) -
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. -
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
Sur d’autres sites (9024)
-
Writing video with x264 Fourcc in Videowriter class in opencv
28 janvier 2015, par Kausic GunasekkarI wanted to do a very simple project of giving a program an input video which is saved in the same directory as "my_video" without any processing steps. I specifically want to use the H.264 compression format. Hence I chose ’X’,’2’,’6’,’4’ Fourcc and the program popped out the following errors.
broken ffmpeg default settings detected
use an encoding preset (e.g. -vpre medium)
preset usage : -vpre -vpre
speed presets are listed in x264 —help
profile is optional ; x264 defaults to high
Could not open codec ’libx264’ : Unspecified errorSo how do I install libx264 and configure it to work with opencv.I tried setting the fourcc value to -1 to do it by hand but no Window popped up requesting me to choose one of the available codec.( isn’t that supposed to happen).
any help would be appreciated.
-
ffmpeg causing wrong duration on a converted .m2v video ?
10 octobre 2022, par VILEWORXI've been using ffmpeg to convert .mp4 videos to an extremely specific .m2v format for a modding project using the following command :


ffmpeg -i input.mp4 -profile:v high -codec:v mpeg2video -b:v 4000k -vf scale=512:480,colorspace=smpte170m,fps=60 -map 0 -map -0:a -maxrate 4000000 -bufsize 655360 output.m2v


However, the start and end points of the output are not the same as my input file (29 seconds). ffprobe shows "Duration : N/A, bitrate : N/A".


Strangely, the video duration is correct when loaded in Adobe After Effects, is slightly shorter in QuickTime Player, and is only 8 seconds according to Windows File Explorer (on my friend's computer). I suspect the lack of duration and bitrate displayed by ffprobe may have something to do with it, and this doesn't happen with any other format I've tried converting to.


Does anyone know how to fix this ?


-
diracdec : fix idwt_stride calculation in bytes
11 janvier 2016, par Andreas Cadhalpundiracdec : fix idwt_stride calculation in bytes
The transformation to bytes must happen after alignment to get the same
resulting pointers as before.This fixes segmentation faults in the assembler code.
The regression was introduced in commit 9553689.
Reviewed-by : Kieran Kunhya <kierank@obe.tv>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>