
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 (7885)
-
FFMEG : run code after complete conversion
26 octobre 2019, par Сергей БарахтенкоThere is a code that runs FFMPEG
shell_exec($this->config->item('ffmpeg') . ' -i ' . $path . ' ' . $cmd . ' 1>' . $folder . '/log.txt 2>&1 ');
And there is the following line, which should, taking into account the peculiarities of the PHP language, work out immediately after
shell_exec
$params = array(
'status' => 'ready'
);
$result = $this->model->editVideo($video_key, $params);This line simply updates the status of the video in the database
My question is, why doesn’t the further php code work after completion
shell_exec
? What could be the catch ? -
FFmpeg ios sample code for video streaming
29 avril 2014, par iJoseI have done with
Video Encoding
usingAVFoundation
framework in ios.Now i want to stream these video to a
RTMP
server usingFFMPEG
.
IT would be great help if anyone of you post a link / sample Code for achieving this.
Any other Solution other than this is also invited.Thanking you in advance.
-
How to execute a ffmpeg code on a GPU without using the command line ?
24 octobre 2018, par 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