
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (82)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7981)
-
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