
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (47)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (9909)
-
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").
-
Build FFMPEG 1.2 (Code name magic) for android
3 juillet 2013, par Jijo VargheseI'm working on a multimedia project. Where i need to concatenate more than one videos. I found that
ffmpeg concat demuxer
has been added toffmpeg fire flower
(version 1.1). Somebody help me out on, how tobuilid ffmpeg 1.1 / 1.2
for android ?.I've checked all other alternatives, None succeeded. Thanks in advance !!