
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (39)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (4330)
-
setting cpu thread in ffmpeg
2 novembre 2024, par Amy BomerI have a PC 24 Thread and when I use ffmpeg. It only uses 25% of my CPU. So, how can all of these 24 threads be used ? So my CPU usage reaches 100%, because if it's 25% it's still a slow process


example :


ffmpeg -i video01.mkv -i watermark.png -filter_complex "overlay = 10: 10" output01.mkv



how to set 24 cpu threads ?


-
Is there any simple and convenient object oriented C++ api wrapper for ffmpeg library ? [on hold]
3 novembre 2015, par Steel FedeXI not found any. Looking only for C++ api wrapper - commandline ffmpeg program not suitable for my needs. Something simple for manipulation with video/audio streams, filters, including custom processing steps, getting low level data etc... I started writing my own wrappers, but it is so painfully and slow.
-
Generate gif from jpeg images using ffmpeg
3 juin 2017, par wojttaaI want to create a gif image from a jpeg image list, everything works fine, but how can I slow the animation ?
Here is my code :
<?php
exec('ffmpeg -f image2 -i thumb/%001d.jpg -vf scale=480x240 out.gif');
?>