Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (27)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6699)

  • Anomalie #2300 (Fermé) : URL_FORUM et destinée de ?forum201

    8 septembre 2011, par cedric -

    non ce sont simplement les forums qui sont cassés sur cette base a cause d’un bug d’upgrade qui a été résolu y a quelques temps déjà (les forums ne sont plsu associés à leur article). Il faut supprimer ces vieux forum ou repartir de la base fraichtruc d’origine pour la (...)

  • Anomalie #2805 : Utiliser les champs nom et email de la table auteur si id_auteur est renseigné

    26 juillet 2012, par denisb -

    je ne suis pas d’accord. un forum, à mon sens, présente un lien fort avec sa temporalité (le moment où il a été posté). de ce point de vue, l’auteur (nom + mail falcultatifs si pas connecté, nom + mail + id pré-renseignés —mais modifiables— si connecté) doit y rester associé tel qu’il était (tel (...)

  • 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 !