Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (95)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang 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.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • 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 (7096)

  • javaCV ffmpeg Android N Linker error

    8 février 2017, par B. Noble

    I’m hoping I can get some help on an issue I cannot seem to solve. I am trying to use javaCV FFmpegFrameGrabber to capture an RTSP stream. I have followed the instructions on configuring javaCV manually. I have ffmpeg.jar, javacv.jar, and javacpp.jar in the libs folder and the .so files in jniLibs/armeabi-v7a. I am using javaCV version 1.3.1.

    When I Run the application on a device running Android 5.0.1, it runs fine, but I’ve tried it on several devices running Android 7+ and I consistently get the error :

    E/linker : library "/system/lib/libdl.so" ("/system/lib/libdl.so")
    needed or dlopened by "/system/lib/libnativeloader.so" is not
    accessible for the namespace :

    Any suggestions on how to get this working on Android 7+ ?

  • Android - merge (join) two or more WAV files into one (mix it) simultaneously

    23 mai 2016, par Pepa Zapletal

    I want merge more WAV files in my app into one WAV file. But I don’t want combine them consecutively (like File1-File2-File3...) but all files should start at the same time (concurrently/simultaneously).

    Is this possible in Android without using some natives libraries (like FFmpeg) ? I looked at the AudioTrack and SoundPool but I think it’s not a solution for this problem.

    Also I found this post Android : How to mix 2 audio files and reproduce them with soundPool but how can I combine bytes from more WAV files ?

  • Android FFmpeg wrapper that can run https protocol

    19 février 2019, par Henderson

    I’m trying to deploy ffmpeg command on my android app.

    the command I’m gonna run is like

    ffmpeg -headers "X-Token:SOMETOKEN" -i https://streamthatiwannaget.com/player.m3u8 -acodec copy outputfile.m4a

    I tried libraries from bravobit’s and writingminds’s but the problem was both of them DO NOT support https protocol.

    Seems like openssl is required when compiling ffmpeg.

    But it’s really frustrating to building, writing Android.mk and JNI... so on.

    Is there any ffmpeg-android library that can deal with https protocol ?
    Or any idea helpful for this ? Thank you in advance.