
Advanced search
Other articles (65)
-
List of compatible distributions
26 April 2011, byThe 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
1 December 2010, byLa 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 June 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
On other websites (7793)
-
How to execute a ffmpeg code on a GPU without using the command line?
24 October 2018, by Gilberto UgoliniWe have written a short code in C code to read a video file, using common libraries as
libavcodec
,libavformat
, etc.The code is running smoothly but only using the CPU resources. We’d need to run the code on the GPU (Nvidia GeForce 940MX and 1080Ti). Is there a way to force the code to be run on the GPU?
While using the command line (e.g.,
ffmpeg -hwaccel cuvid -i vid.mp4 out.avi
) things are fine, we are not able to have it working on the GPU from the source code.We are working with Ubuntu 18.04, and ffmpeg correctly compiled with CUDA 9.2
-
Python code to concat videos and images using ffmpeg
9 December 2019, by srt243I have a folder with multiple
mxf
files in it and I want to join the files by inserting an image forn
number of duration between videos. Below is the list with the duration for which an image needs to be inserted for.['00:00:06:17', '00:00:00:16', '00:00:01:05', '00:00:00:31', '00:00:01:01']
For example, if the folder has 5
mxf
files then,video1 + image for 00:00:06:17 + video2 + image for 00:00:00:16 + video 3, etc...
Any pointers will be much appreciated.
-
libav avformat_open_input error code -1094995529
17 June 2015, by mohamedI am using libav to decode njpeg stream, I read each frame as a byte array.
usingAVIOContext
to read the array and make anAVFormatContext
I got 2 frames decoded, the third one, the function
avformat_open_input
returns-1094995529
What is that error code, so I can find out the problem?