Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le 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 (...)

  • 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

Sur d’autres sites (9317)

  • Is it possible to run ffmpeg command in android for streaming ?

    21 juillet 2016, par Arun Rajiah

    I am trying to stream android screen through ffmpeg. Is there anyway to run the ffmpeg command directly in the android phone for streaming through udp ?

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