
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (99)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Les sons
15 mai 2013, par -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (16060)
-
ffmpeg for android guardian project build failing
20 octobre 2015, par WikkiI am a noob and i am trying to compile a static build of ffmpeg for android using "guardian project" repo. (https://github.com/guardianproject/android-ffmpeg)
I have followed the steps mentioned in there, but it fail all the time. I am using Ubuntu 11.10 64 bit using vmware. Android NDk r8e 32 bit.
Here is the complete log of android-ffmpeg compilation. http://bit.ly/1mgZqeV
Also have a look at the terminal command window showing the errors......
It seems that make files are not done.
Please help me if some one has more clear understanding.
-
FFMPEG PROJECT BATCH [duplicate]
30 janvier 2020, par PierDEVITI need to transform with FFmpeg every file from a folder to another.
The video bitrate must be the best for the web.
Codec h264 or h265 ?
Frame-rates and resolutions size must be no change from the source.How can I do it ?
-
How do I use ffmpeg4android in an ADT project ?
16 janvier 2013, par mystaferI used the project FFmpeg4Android on sourceforge to build the FFmpeg .so shared library files. However, I am having trouble using them in an ADT Java application. I created a simple JNI call that attempts to call av_register_all and I get library errors.
When I run the application on my Nexus 7 I am told that it is unable to load library libavformat-HEAD-1.0.so
So I tried to load this via the System.loadLibrary method and I was unable to find libavcodec-HEAD-1.0.so. Working my way back in this manner I eventually attempted to load libavutil-HEAD-1.0.so which yielded an error 'cannot locate symbol "__strchr_chk"'.
This is my Java class :
public class LibavcodecTest {
public static native void avRegisterAll();
static {
System.loadLibrary("avutil-HEAD-1.0");
System.loadLibrary("avcodec-HEAD-1.0");
System.loadLibrary("avformat-HEAD-1.0");
System.loadLibrary("LibavcodecTest");
}
}Update
I contacted the developer that maintains ffmpeg4android and he was able to direct me to change the version of the android source I was building against to the same as my device which worked to allow my to call av_register_all successfully.
However, now I get a crash calling avformat_open_input where I receive "Fatal signal 11 (SIGSEGV)".
My search on the web makes me believe this is a memory access issue. Does anybody know if this may be resolved by loading the shared libraries differently ?