
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (83)
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
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 (...)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5154)
-
Android UnsatisfiedLinkError using ffmpeg library
5 avril 2012, par BombasticI'm trying to use
FFMPEG
library in my Android application like this example here : AFPlayer . I have a builded and running version of this application and everything works fine, but when I tried to implement the same logic in my application it crashes everytime I start my media player. So the thing that I did was to copy and paste all files from afplayer's folders to my app (not sure if I have to do something else or if it's the right way,but it's my first touch with Android NDK and I'm not really sure how to do the things). Here is how I'm trying to start my DRadioMediaPlayer :player = new DRadioMediaPlayer();
//player.setOnPreparedListener(this);
//player.setOnCompletionListener(this);
//player.setOnErrorListener(this);
//player.setOnBufferingUpdateListener(this);
//player.setAudioStreamType(AudioManager.STREAM_MUSIC);
try
{
Uri source = Uri.parse(playlist.getCurrentSource().toString());
player.setDataSource(source);
//player.setDataSource(playlist.getCurrentSource().toString());
player.prepare();
playbackState = DRadioPlayerService.PLAYBACK_STATE_BUFFERING;
}This is how I load the library :
static {
System.loadLibrary("player");}
and here is the exception which I'm getting :
04-05 17:04:37.478: W/dalvikvm(686): No implementation found for native Lcom/nimasystems/android/radio2/DRadioMediaPlayer;.n_createEngine ()V
04-05 17:04:37.478: D/AndroidRuntime(686): Shutting down VM
04-05 17:04:37.478: W/dalvikvm(686): threadid=1: thread exiting with uncaught exception (group=0x400259f8)
04-05 17:04:37.478: E/AndroidRuntime(686): FATAL EXCEPTION: main
04-05 17:04:37.478: E/AndroidRuntime(686): java.lang.UnsatisfiedLinkError: n_createEngine
04-05 17:04:37.478: E/AndroidRuntime(686): at com.nimasystems.android.radio2.DRadioMediaPlayer.n_createEngine(Native Method)
04-05 17:04:37.478: E/AndroidRuntime(686): at com.nimasystems.android.radio2.DRadioMediaPlayer.<init>(DRadioMediaPlayer.java:68)
04-05 17:04:37.478: E/AndroidRuntime(686): at com.nimasystems.android.player.service.DRadioPlayerService.initPlayer(DRadioPlayerService.java:577)
04-05 17:04:37.478: E/AndroidRuntime(686): at com.nimasystems.android.player.service.DRadioPlayerService.onStart(DRadioPlayerService.java:568)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.app.Service.onStartCommand(Service.java:420)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3267)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.app.ActivityThread.access$3600(ActivityThread.java:135)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2211)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.os.Handler.dispatchMessage(Handler.java:99)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.os.Looper.loop(Looper.java:144)
04-05 17:04:37.478: E/AndroidRuntime(686): at android.app.ActivityThread.main(ActivityThread.java:4937)
04-05 17:04:37.478: E/AndroidRuntime(686): at java.lang.reflect.Method.invokeNative(Native Method)
04-05 17:04:37.478: E/AndroidRuntime(686): at java.lang.reflect.Method.invoke(Method.java:521)
04-05 17:04:37.478: E/AndroidRuntime(686): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
04-05 17:04:37.478: E/AndroidRuntime(686): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
04-05 17:04:37.478: E/AndroidRuntime(686): at dalvik.system.NativeStart.main(Native Method)
</init>and here is the line where actually the exception it thrown :
public DRadioMediaPlayer() {
Log.d(TAG, "Create new MediaPlayer");
n_createEngine(); // here
}
public native void n_createEngine();Any suggestions what actually can I do to fix this problem ? I've read all questions with similar issue here,but none of them worked for me.
Thanks in advance !
-
Anomalie #3136 (En cours) : Inscription visiteur - confirmation inscription manque de message
7 février 2021, par b bHa mais ça me donne idée, il serait peut-être plus simple de rediriger vers une page de type minipres ? Ça fait plus "message de service", donc plus percutant/visible.
-
using streams with php
3 décembre 2013, par Abdul AliI am completely new to streams and cannot (till now) find anything helpful.
Purpose is to open a stream in PHP , assign a unique id to it for accessing and send data to that stream from a web service (images encoded in base64).
Those image(s) needs to be sent to ffmpeg at realtime for it to join them into a video for live streaming.
Any help will be appreciated.
a.ali