
Recherche avancée
Autres articles (62)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
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 (7886)
-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
Porting code from Windows 7 to Linux using using NReco.VideoConverter
2 février 2017, par Omar SalemI trying to port code from Windows 7 to Linux (RHEL 7). I am using the component to connect to a webcam and capture audio and video to a file and also capture frames as images to files. On Windows 7 I used the following code which works :
var ffMpegTask = videoConv.ConvertLiveMedia(
@"/dev/video0", // @"video=Logitech ... :audio=Microphone ..." on Windows
"v4l2", // "dshow" on Windows
rawBmpOutputStream,
null,
new ConvertSettings() {
CustomOutputArgs = String.Format(" -r 5 -t 10 output.wmv -r 5 -t 10 output.mp3 -r 5 -t 10 -f rawvideo -s {0}x{1} -pix_fmt bgr24 ",
outputWidth, outputHeight) });This code compiles and executes on RHEL and MonoDevelop but does not generate the audio, video or image files. The webcam blinks for a second and goes away.