Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (32)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6966)

  • Revision 79199e465a : Reverting "Adds support for reading and writing 10/12-bit y4m" for now because o

    3 juillet 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /test/md5_helper.h


     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /test/video_source.h


     Delete /test/y4m_test.cc


     Modify /test/y4m_video_source.h


     Modify /tools_common.h


     Modify /vp9/vp9_iface_common.h


     Modify /vpx/src/vpx_image.c


     Modify /vpx/vpx_codec.h


     Modify /vpx/vpx_image.h


     Modify /vpxdec.c


     Modify /vpxenc.c


     Modify /y4menc.c


     Modify /y4menc.h


     Modify /y4minput.c


     Modify /y4minput.h



    Reverting "Adds support for reading and writing 10/12-bit y4m" for now because
    of Mac Build Failure.

    This reverts commit 82dc1332af4b16d3e4ad3c4358498820637b7add

    Change-Id : I824bf42bf47c7df6985c79e451d6af913030d374

  • Revision 727f384085 : Merge "Separates profile 2 into 2 profiles 2 and 3"

    18 juillet 2014, par Deb Mukherjee

    Changed Paths :
     Modify /test/invalid_file_test.cc


     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /vp9/decoder/vp9_decodeframe.c



    Merge "Separates profile 2 into 2 profiles 2 and 3"

  • JavaCV on Android : UnsatisfiedLinkError from libjniavdevice.so / dlopen failed cannot locate symbol "av_input_audio_device_next"

    8 septembre 2014, par liorg

    I am trying to work with JavaCV’s FFmpegFrameGrabber on Android 4.4.2 / 4.3.1 .

    Inside the onCreate(...) method I am calling :

    FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(path)

    This causes the following runtime error :

    dlopen("/data/app-lib/com.example.testjavacv-1/libjniavdevice.so")
    failed: dlopen failed: cannot locate symbol "av_input_audio_device_next"
    referenced by "libjniavdevice.so"

    Other (possible) relevant information :

    1) I have included all the JavaCV .so libraries inside the libs/armeabi and libs/x86 folders.

    2) I have given the application permissions to read/write to external storage and access the camera and microphone.

    3) I am NOT statically loading any of the JavaCV native libraries before instantiating FFmpegFrameGrabber. This is because,

    • Some of the libraries cause runtime exceptions when I attempt to load them statically by myself.
    • I get the impression that JavaCV handles it’s own native library loading - for example the error I get ocurrs even though I have not requested to load the jniavdevice.so library and happens only if the ... new FFmpegFrameGrabber(...) ... code is present.

    4) I have taken a look at : https://groups.google.com/forum/# !topic/javacv/bgB5rCv_fVM which seems to address a similar issue, but the suggested solutions don’t seem to work.

    Any help on this issue would be much appreciated,
    Cheers !