
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (37)
-
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5380)
-
Unable to load ffmpeg.so from Android system.loadlibrary
22 janvier 2014, par WhoamiI tried bulding ffmpeg version 2.1.3 for android, and following this link :
http://www.roman10.net/how-to-build-ffmpeg-for-android/
Somehow i could able to compile the code, and generated .so file, now while loading in the android application through system.loadlibrary(), it generates
01-22 21:17:31.405: A/libc(886): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 886 (testbuildffmpeg)
I have no clue of source of this issue, and it will be really grateful if you point out
what went wrong ? -
x86/vp9lpf : add a preload system in FILTER_UPDATE.
25 janvier 2014, par Clément Bœsch -
System.load() is not loading the .so files though they are there
22 février 2018, par Anuran BarmanI am trying to load FFMPEG .so files from the /files folder of the application but System.load() is not loading them. My code look like this below :
static {
try {
String[] libs={
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavfilter.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libswscale.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavformat.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libffmpeg-jni.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libswresample.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavutil.so",
App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavcodec.so"
};
for(int i=0;icode>If I remove them android studio logcat says library file not found specifying the exact location like /data/0/emulated/myPKGName/files/sharedLibs/.so so it is loading the so files but if I provide them it still shows UnsatisfiedLinkError error, like below :
java.lang.UnsatisfiedLinkError: dlopen failed: library "libswscale.so" not found
Why is it in turn searching for libswrescale.so file though that is already loaded from files folder ?