
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (50)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4560)
-
Revision 5700b4ea42 : Replace scatter scan 32x32 with HW friendly scan. The first 240 coeff positions
30 mai 2013, par Sami PietilaChanged Paths :
Modify /vp9/common/vp9_entropy.c
Replace scatter scan 32x32 with HW friendly scan.The first 240 coeff positions (15 top-left blocks) are scanned in the
same order as in scatter scan, after that the coeffs are scanned in
"block bands", each band at a time, all coeffs in one band before
moving on to the next band. This brings down the amount of 4x4 coeff
blocks that need to be buffered while scanning, from 15 blocks to 8 blocks.Change-Id : I478a991d63c48bd5e64d36e59fed7a00c9a651ba
-
Decoding AAC in FFmpeg for Android
13 octobre 2012, par synthcatI am attempting to decode an M4A file on an Android device using AAC.
I use the following code to initialize the codec.
codec = avcodec_find_decoder(CODEC_ID_AAC);
c= avcodec_alloc_context();
avcodec_open(c, codec);However, when I later attempt to decode a frame using :
len = avcodec_decode_audio3(c, (short *)mOutbuf, &out_size, &avpkt);
I get -1 (indicating an error) and the following on the log.
10-11 16:30:01.115: INFO/M4ADecoder(5260): channel element 0.0 is not allocated
10-11 16:30:02.195: INFO/M4ADecoder(5260): channel element 2.0 is not allocated
10-11 16:30:03.295: INFO/M4ADecoder(5260): channel element 0.6 is not allocated
10-11 16:30:07.645: INFO/M4ADecoder(5260): Sample rate index in program config element does not match the sample rate index configured by the container.
10-11 16:30:07.655: INFO/M4ADecoder(5260): Number of bands (3) exceeds limit (2).Are there any other steps I need to do when setting up the codec ? Do I need to preparse the file before sending data to the AAC decoder ?
The same file works fine with the latest ffmpeg code on Mac OSX (i.e., ffmpeg -i filename.m4a").
-
decoding AAC in ffmpeg android
12 octobre 2012, par synthcatI am attempting to decode an M4A file on an Android device using AAC.
I use the following code to initialize the codec.
codec = avcodec_find_decoder(CODEC_ID_AAC);
c= avcodec_alloc_context();
avcodec_open(c, codec);However, when I later attempt to decode a frame using :
len = avcodec_decode_audio3(c, (short *)mOutbuf, &out_size, &avpkt);
I get -1 (indicating an error) and the following on the log.
10-11 16:30:01.115 : INFO/M4ADecoder(5260) : channel element 0.0 is not allocated
10-11 16:30:02.195 : INFO/M4ADecoder(5260) : channel element 2.0 is not allocated
10-11 16:30:03.295 : INFO/M4ADecoder(5260) : channel element 0.6 is not allocated
10-11 16:30:07.645 : INFO/M4ADecoder(5260) : Sample rate index in program config element does not match the sample rate index configured by the container.
10-11 16:30:07.655 : INFO/M4ADecoder(5260) : Number of bands (3) exceeds limit (2).Are there any other steps I need to do when setting up the codec ? Do I need to preparse the file before sending data to the AAC decoder ?
The same file works fine with the latest ffmpeg code on Mac OSX (i.e., ffmpeg -i filename.m4a").
Thanks in advance for any help you can provide.