
Recherche avancée
Autres articles (97)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (9249)
-
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.
-
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").
-
building static ffmpeg library for Android under windows 7
29 mai 2013, par ZhenyaI know that this has been asked several times, but I've never found any clear step by step and conclusive answer.
How can I compile ffmpeg for Android, under windows 7 ?
What are the steps ? Is there a project or wiki on the internet where to find this ?All I've found are steps to run under Ubuntu, or purely linux, but nothing to generate a static library for android, to be build under windows 7.
Thanks