
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (11)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (3608)
-
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 ?
-
FFMPEG can not load frei0r plugins via environment path on windows 10
23 janvier 2018, par sam rolfeThis works fine on windows 7 - however on windows 10 mo matter what I try FFMPEG can not load the .dll file.
In debug mode it shows me that it is reading the correct environment path - however it is unable to find the file on that path - its so strange.
Looking for frei0r effect in ’C :\freior/edgeglow.dll’
I have tried with all manner of folders, names, slashes, etc - it always returns
Could not find module ’edgeglow’
I am wondering of there is some sort of user permissions ? Something is blocking it.
-
ffmpeg aac encoder shows "Input contains (near) NaN/+-Inf"
26 janvier 2021, par zzzzzzhere's a question.
When my code goes to
ret = avcodec_send_frame(enc_ctx, tmpFrame)
, sometimes it returnsAVERROR(EINVAL)
. Many people say that the reason is the format of tmpFrame isAV_SAMPLE_FMT_S16
, but encoder needsAV_SAMPLE_FMT_FLTP
. However, my log shows thattmpFrame->format: 8, tmpFrame->channels: 1, tmpFrame->channel_layout: 4, tmpFrame->sample_rate: 32000, tmpFrame->nb_samples: 1024
. Here 8 is the value ofAV_SAMPLE_FMT_FLTP
.

So what is the reason of this bug ?