Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (112)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (17226)

  • Run 3 Docker images together as a single service

    20 juin 2018, par kitce

    I want to run 3 Docker images as a single service. They are the official nginx, jrottenberg/ffmpeg and a custom image.

    The custom image will return video files for HTTP requests on port 80, e.g. http:////video.mp4.

    I want to make the video files available for HLS in M3U8 playlist (or other better formats ?).

    The main idea is as follows :

    • Encode video.mp4, output video.m3u8 and segment files with ffmpeg
    • Serve the video.m3u8 and segment files with Nginx
    • The final and the only available web service of the container is http:///.m3u8.
    • Encode only when someone is requesting it (i.e. trigger the encoding when the first request comes, stop encoding and delete segment files when nobody requests it)

    I tested the HLS part with ffmpeg and it works. I am just not sure about how to put Nginx and ffmpeg to work together.

  • FFMPEG show libavcodec.so : text relocation warning dialog in Android

    3 juillet 2019, par Anand Jain

    Hi all I am using FFMPEG 2.6.1 jar in my libs folder in project and I use same version .so files in my project. Please check below enter image description here

    We use android studio version 2.3.3. Please anyone can tell me how I can remove the below warning dialog.
    enter image description here

  • Building FFMPEG with Android Project

    19 avril 2017, par Contextioner

    I have generated ffmpeg binaries and setup NDK with my Android Studio I have also generated static files of ffmpeg. I am new with Android NDK I need help with building ffmpeg with my Android Project can anyone guide me to do so.

    Here is the screenshot of the generated files.

    This is my Android.mk file.

    LOCAL_PATH := $(call my-dir)
    include $(CLEAR_VARS)
    LOCAL_C_INCLUDES := $(ANDROID_NDK)/sources/ffmpeg-3.3
    LOCAL_CFLAGS := -Os -fpic -marm -march=armv7-a -mfloat-abi=softfp -mfpu=neon
    LOCAL_MODULE := MyFFmpeg
    LOCAL_SRC_FILES := arm/videoKit.c arm/ffmpeg.c arm/ffmpeg_filter.c arm/ffmpeg_opt.c arm/cmdutils.c
    LOCAL_STATIC_LIBRARIES := libavdevice libavformat libavfilter libavcodec libavutil libswresample libswscale
    include $(BUILD_SHARED_LIBRARY)
    $(call import-module,ffmpeg-2.2.3/android/arm)