
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (10109)
-
How to extract android bitmap from ffmpeg AVFrame* ?
3 juin 2014, par 4ntoineI need to pass ffmpeg frame bitmap to android and i have ported ffmpeg working on android. How can convert AVFrame* to android bitmap ?
-
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 ? -
x264 lib fails to build on Android, other plugins not included
24 novembre 2022, par SOSparachuter1On my x86 windows machine, I'm compiling an Android app that links gstreamer using CMake : https://github.com/henkeldi/gstreamer-android/blob/master/app/src/main/cpp/CMakeLists.txt


I'm using the latest Android binaries provided by gstreamer, so far everything worked and I've successfully linked gstreamer's app plugin. Next I tried to link x264 :


SET(GST_PLUGINS_CORE_LIBS gstx264 gstapp)

SET(GST_PLUGINS_BASE ... x264)



However, doing so results in dozens of these text relocation errors :


ld:error: relocation R_AARCH64_ADD_ABS_L012_NC cannot be used against symbol x264_cabac_range_lps; recompile with -fPIC



Even after I add the flag -fPIC these do not go away. Doing a bit of digging I see that Android does not allow text relocation since Api23, but that was several years ago. Is there still no fix on Android ?


I also noticed that the videoparsersbad and hls plugins are not in the latest Android gstreamer binaries (version 1.21.2). Are these also not supported on Android ?