Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7248)

  • Rebuilding opencv and ffmpeg with x264 results in java.lang.UnsatisfiedLinkError

    30 avril 2013, par kev

    I'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 this

    yuvIplimage = 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 &#39;libopencv_core.so&#39; for &#39;libjniopencv_core.so&#39; (find_library[1200]:   108 &#39;libopencv_core.so&#39; 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.

  • Android - convert mp4 to a list of frames programmatically

    6 février 2014, par o.antsiferov

    I want to play some animtaions (actually, gifs) which were previously encoded (with h264 codec) and downloaded from network as mp4 files (because mp4 files are much smaller than corresponding gifs). So, on a device I want to decode mp4 and get all the frames to create animations. And the question - what is the best way to decode mp4 to accomplish my task ?

  • Revision 4def0a8125 : Cleaning up and fixing psnr calculation code. Introducing calc_psnr() which cal

    11 janvier 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h



    Cleaning up and fixing psnr calculation code.

    Introducing calc_psnr() which calculates psnr between two yv12 buffers.
    Previously we incorrectly used width/height instead of
    crop_width/crop_height to calculate number of samples — fixed.

    Change-Id : Iecda01980555de55ad347e0276e6641c793fa56c