
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (59)
-
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 (12824)
-
What does ffmpeg error "Prediction is not allowed in AAC-LC" mean ?
21 juin 2014, par user2212461When decoding AAC files, ffmpeg returns the error
"Prediction is not allowed in AAC-LC".
Does that mean the file is corrupt ? Or that ffmpeg cannot handle AAC-LC files ?
I tried with different AAC files and get the errors :
Number of scalefactor bands in group (63) exceeds limit (49).
TNS filter order 25 is greater than maximum 12.So I guess its not my file that is corrupt but ffmpeg can only handle specific AAC formats ? Which would these be ?
-
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").