
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 (24)
-
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) (...)
-
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 (...) -
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 (...)
Sur d’autres sites (5987)
-
FFMPEG read audio convenience function
7 mars 2016, par Phlox MidasIn Matlab, there’s a function called
audioread
that takes a file name as input and returns a vector of samples and the sample rate like this :[samples, sampleRate] = audioread(fileName);
I’ve been programming FFMPEG but finding it very low level. I have a file being read using a technique similiar to this. Is there any such equivalent C function in FFMPEG as there is in Matlab so I don’t have to fiddle with the low level stuff ? Or any library that can provide a nice API like this for FFMPEG (though I would just prefer this one function) ?
-
How to use hardware acceleration with ffmpeg
5 avril 2018, par ixSciI need to have ffmpeg decode my video(e.g. h264) using hardware acceleration. I’m using the usual way of decoding frames : read packet -> decode frame. And I’d like to have ffmpeg speed up decoding. So I’ve built it with
--enable-vaapi
and--enable-hwaccel=h264
. But I don’t really know what should I do next. I’ve tried to useavcodec_find_decoder_by_name("h264_vaapi")
but it returns nullptr.
Anyway, I might want to use others API and not just VA API. How one is supposed to speed up ffmpeg decoding ?P.S. I didn’t find any examples on Internet which uses ffmpeg with hwaccel.
-
How to use hardware acceleration with ffmpeg
16 juin 2014, par ixSciI need to have ffmpeg decode my video(e.g. h264) using hardware acceleration. I’m using the usual way of decoding frames : read packet -> decode frame. And I’d like to have ffmpeg speed up decoding. So I’ve built it with
--enable-vaapi
and--enable-hwaccel=h264
. But I don’t really know what should I do next. I’ve tried to useavcodec_find_decoder_by_name("h264_vaapi")
but it returns nullptr.
Anyway, I might want to use others API and not just VA API. How one is supposed to speed up ffmpeg decoding ?P.S. I didn’t find any examples on Internet which uses ffmpeg with hwaccel.