
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (33)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (3640)
-
Could not open codec FFMPEg
3 juin 2016, par Van GanI’m working on a Project in C++ with FFMPEG. I’m stuck on the Problem , that he codec is found but cannot be opened. Here’s my code :
codec = avcodec_find_encoder(AV_CODEC_ID_H264);
c = avcodec_alloc_context3(codec);
if (!codec) {
fprintf(stderr, "Codec not found\n");
exit(1);
}
/* open the codec */
if (avcodec_open2(c, codec,NULL) < 0)
{
fprintf(stderr, "Codec could not be opened\n");
exit(1);
}I have aleady registered all the codec in the main function. Any help would be very appeciated !
-
libavutil : add avpriv_open() to open files with close-on-exec flag
6 août 2013, par Rémi Denis-Courmont -
can't open jmpeg codec
14 avril 2016, par YJJI am trying to convert jpg images to mjpeg video file.
when I selected MJPEG as a codec, error occurs
//AVCodecID codec_id = AV_CODEC_ID_H264;
AVCodecID codec_id = AV_CODEC_ID_MJPEG;
if (avcodec_open2(pCodecCtx, pCodec, NULL) < 0) {
printf("Could not open codec\n");
return -1;
}it stops at the avcodec_open2 function.
but when I choose H264 codec, it goes smoothely.
I can’t understand what’s going on here.