
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (30)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (6259)
-
Using FFprobe to determine if a video uses variable frame rate [closed]
8 mars 2024, par Marco MayerWhat is the recommended approach to determine with
ffprobe
, if a given video file is containing a variable frame rate track or not. Using metadata fromffprobe
I fetched those values e.g. :

avg_frame_rate = 384000/43607 // ~ 8.80
r_frame_rate = 30/1 // = 30.00



How to determine if variable frame rate is used ?
Use the difference
(r_frame_rate - avg_frame_rate) > 1
e.g. and the denominator in avg_frame_rate is not equal 1 as condition ?

-
Determine hardware acceleration support for a machine running libffmpeg via C++
11 septembre 2023, par Space BearI'm currently trying to find out how to query a Linux system to get find out if it support Hardware accelerated decoding of a specific video codec. (this is a multi codec application and this is part of choosing the best/fastest codec depending on the situation.)


My first inclination is to leverage FFMpeg as we already use it, specifically
ff_find_hwaccel
. However this is an internal function.

Second idea would be self implementation using
av_hwaccel_next
but this is deprecated.

Is there an upto date method to query ffmpeg to determine if a codec has hardware acceleration support on the machine it's running on ?


-
libavcodec/cuviddec : determine amount of decoded surfaces from within cuvid parser
1er juin 2023, par Roman Arzumanyan