
Recherche avancée
Autres articles (68)
-
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 (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (8033)
-
aac_adtstoasc_bsf : Return proper error code
30 août 2014, par Gabriel Dume -
.S files causes clang : error : assembler command failed with exit code 1
17 octobre 2014, par MiuI wanted to create a .a file using Xcode from the ffmpeg source files. So i added the sources i wanted inside my Library folder and edited the necessary headers. But when i try to build it, it gives off an error. This happens especially in the first .S file it tries to compile (i checked this part in build phases > Compile sources)
clang : error : assembler command failed with exit code 1 (use -v to see invocation)
Command /Applications/Xcode 3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1I attached an image of the whole error
Can i please ask what went wrong ? I have been working on this for a few days already :( i’m relatively new to Xcode. Any advice would greatly be appreciated. Thanks. -
Getting an error in simple code with opening the file
10 mars 2016, par DmitryHere is code example :
char* audio1Path = "in1.sdp";
if (open_input_file(audio1Path, &input_format_context_0/*it`s null*/, &input_codec_context_0/*it`s null*/) < 0)
{
av_log(NULL, AV_LOG_ERROR, "Error while opening file 1\n");
exit(1);
}in1.sdp is in folder where exe file is. What`s wrong ?