
Recherche avancée
Autres articles (62)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (6771)
-
Client/Server Video Streaming [on hold]
7 juillet 2014, par Nawaf AlsrehinI want to build client/Server application in order to do video streaming from server (that is holds the video files) to the client (that want to view the video files). In between I should be able to transcode the video stream to fit the clients (PC, tablet, and smart phone) requirements. For example, If I have a flv (680x320, 30 fps, H.264 codes )video file in the server and want to send it to the client that be able to view only mp4 (320x240, 25 fps, MPEG4 codec).
1) I am wondering if Red5 will work or not because it just allow only FLV clients ?
2) Can I design my own RTP or RTMP protocols to do this ? If yes, It is doable or not within few weeks
-
Rebuilding opencv and ffmpeg with x264 results in java.lang.UnsatisfiedLinkError
30 avril 2013, par kevI've followed the readme file included with the cppjars zip file from javacv, I'm able to successfully build the libraries but when i run my app with the new .so files i get a java.lang.UnsatisfiedLinkError yet all the .so files exist in the armeabi folder.
the line of code where this exception is triggered looks like thisyuvIplimage = IplImage.create(imageWidth, imageHeight, IPL_DEPTH_8U, 2);
and the exception is this
04-29 15:40:46.610: E/AndroidRuntime(23057): FATAL EXCEPTION: main
04-29 15:40:46.610: E/AndroidRuntime(23057): java.lang.ExceptionInInitializerError
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.sample.Stream.initRecorder(Stream.java:84)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.sample.Stream.onCreate(Stream.java:77)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.Activity.performCreate(Activity.java:4469)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1052)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1932)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1993)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.ActivityThread.access$600(ActivityThread.java:127)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1159)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.os.Handler.dispatchMessage(Handler.java:99)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.os.Looper.loop(Looper.java:137)
04-29 15:40:46.610: E/AndroidRuntime(23057): at android.app.ActivityThread.main(ActivityThread.java:4507)
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.reflect.Method.invokeNative(Native Method)
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.reflect.Method.invoke(Method.java:511)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:978)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:745)
04-29 15:40:46.610: E/AndroidRuntime(23057): at dalvik.system.NativeStart.main(Native Method)
04-29 15:40:46.610: E/AndroidRuntime(23057): Caused by: java.lang.ExceptionInInitializerError
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.Class.classForName(Native Method)
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.Class.forName(Class.java:217)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacpp.Loader.load(Loader.java:338)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacpp.Loader.load(Loader.java:319)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacv.cpp.opencv_core$CvArr.<clinit>(opencv_core.java:163)
04-29 15:40:46.610: E/AndroidRuntime(23057): ... 16 more
04-29 15:40:46.610: E/AndroidRuntime(23057): Caused by: java.lang.UnsatisfiedLinkError: Cannot load library: link_image[1965]: 108 could not load needed library 'libopencv_core.so' for 'libjniopencv_core.so' (find_library[1200]: 108 'libopencv_core.so' failed to load previously)
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.Runtime.loadLibrary(Runtime.java:370)
04-29 15:40:46.610: E/AndroidRuntime(23057): at java.lang.System.loadLibrary(System.java:535)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacpp.Loader.loadLibrary(Loader.java:448)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacpp.Loader.load(Loader.java:372)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacpp.Loader.load(Loader.java:319)
04-29 15:40:46.610: E/AndroidRuntime(23057): at com.googlecode.javacv.cpp.opencv_core.<clinit>(opencv_core.java:136)
04-29 15:40:46.610: E/AndroidRuntime(23057): ... 21 more
</clinit></clinit>I've met all the requirements needed i.e, java SE 6, OpenCV 2.4.5, FFmpeg 1.2, Android NDK r8e. The OS is Ubuntu 11.10.
I don't think the code is the problem because it works well when i use the bundled libraries from javacv but experience issues when i rebuild the libs to include x264.
What am i doing wrong ? I've tried both the 64 and 32 bit versions of the NDK but same problem persists.
-
framemd5_class and md5enc_class may not be identical.
24 mai 2013, par Reimar Döffingerframemd5_class and md5enc_class may not be identical.
Due the crappy issue of classes having to be unique,
we cannot even have classes with identical content,
otherwise the compiler or linker is free to merge them,
giving the same result and bugs as if we had only one class.
Besides redesigning the option code to handle this correctly
I see only the option of requiring any two classes to have
different names, but the list of requirements for
AVClasses is getting kind of unmanageable.Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>