
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (74)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7012)
-
Android ffmpeg release :invalid address or address of corrupt block passed to dlfree
22 mai 2015, par jcguoguys.I’m new to Android JNI development as well as ffmpeg libs.
With some struggles, I have managed to decode the real time H264 data, but meeting error when release the ffmpeg decoder :
12-11 19:54:36.428 27959-27959/com.example.firmament.dji A/libc﹕ invalid address or address of corrupt block 0x6fa13868 passed to dlfree
12-11 19:54:36.430 27959-27959/com.example.firmament.dji A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 27959 (e.firmament.dji)Some questions in stackoverflow mentioned that this error related to wrongly free some memory which was protected(same with Segment Fault).
I checked the C JNI code for times and could not fix the bug, here is my code(release part) :
jint Java_com_example_firmament_dji_XKZH264_release(JNIEnv *env, jobject obj)
{
if (pFrame != NULL) {
av_free(pFrame);
pFrame = NULL;
}
if (pCodecContext != NULL) {
avcodec_close(pCodecContext);
av_free(pCodecContext);
pCodecContext = NULL;
}
if (pParserContext != NULL) {
av_parser_close(pParserContext);
av_free(pParserContext);
pParserContext = NULL;
}
DeleteYUVTab();
return 1;
}
void DeleteYUVTab()
{
if (colortab != NULL) {
av_free(colortab);
colortab = NULL;
}
if (rgb_2_pix != NULL) {
av_free(rgb_2_pix);
colortab = NULL;
}
} -
Ffmpeg : Repeate audio loop until image slideshow not finish
10 août 2018, par Vishal RathodI am working on image slide show with Audio in background, it is working fine but i want it start audio again until slide show not finish.
This is command that i am using for creating slide show.
{"-y", "-r", "1/" + duration, "-i", imgPath + "/frame_%5d.jpg", "-ss", "0", "-i", audioPath, "-map", "0:0", "-map", "1:0", "-vcodec", "libx264", "-r", "2", "-pix_fmt", "yuv420p", "-shortest", "-preset", "ultrafast", outputPath}
-
I using ffmpeg to live stream a hd video to rtmp server of facebook but when see it only show 360 quality
29 octobre 2018, par jack maThis is my ffmpeg code :
'ffmpeg -i "{}" ' \
'-vf "zoompan=z=\'min(max(zoom,pzoom)+0.0015,2)\':d=1:x=\'iw/2-(iw/zoom/2)\':y=\'ih/2-(ih/zoom/2)\'" ' \
'-vcodec libx264 ' \
'-preset veryfast ' \
'-maxrate 2932k ' \
'-bufsize 2500k ' \
'-vf "format=yuv420p" ' \
'-g 60 ' \
'-acodec libmp3lame ' \
'-b:a 198k ' \
'-ar 44100 ' \
'-s 1280x720 ' \
'-f flv "{}"I have wasted 2 day for this problem. Thanks for reading !