Recherche avancée

Médias (91)

Autres articles (111)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (5727)

  • Android - Fatal crash 'signal 11 (SIGSEGV), code 1 (SEGV_MAPERR) strcmp'

    23 juillet 2021, par Md Yeamin

    I am using 'mobile-ffmpeg' from here in one of my android project. Recently I'm seeing a lot of native crash as following :

    


    signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)
strcmp


    


    Stacktrace :

    


    *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
pid: 0, tid: 0 >>> com.example.myapp <<<

backtrace:
  #00  pc 000000000007f758  /apex/com.android.runtime/lib64/bionic/libc.so (strcmp+24)
  #00  pc 00000000002d3b10  /data/app/com.example.myapp-BkrKS2bGJO8lBYjvIITTkw==/lib/arm64/libavcodec.so


    


    I am completely clueless about how to debug this.

    


  • avcodec/vvc/ctu : Simplify code at the end of pred_mode_decode()

    18 mai 2024, par Michael Niedermayer
    avcodec/vvc/ctu : Simplify code at the end of pred_mode_decode()
    

    This simplification assumes that the code is correct

    Fixes : CID1560036 Logically dead code

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vvc/ctu.c
  • Can NGINX RTMP code be modified to split audio from video without FFMPEG ?

    19 novembre 2022, par Nav

    I have an NGINX RTMP server running, which uses an exec ffmpeg command to extract audio from a video call, and then stream the audio to a server.

    &#xA;

    Problem :

    &#xA;

      &#xA;
    1. There's a delay of few seconds.
    2. &#xA;

    3. It consumes extra CPU, becoming costly.
    4. &#xA;

    &#xA;

    Is there a way I can modify the NGINX RTMP code to directly extract audio and stream it to a server ? I did see that NGINX has mux and demux capability. Alternatively, any other C++ or C program would do.

    &#xA;

    addendum : I tried using OBS to stream a video and used NGINX RTMP with exec ffmpeg to extract audio. Approximately 30% of CPU was consumed. Then, while OBS continued to do the streaming, I stopped NGINX sudo /usr/local/nginx/sbin/nginx -s quit, and there was almost no drop in CPU usage. Does this mean that it would be a wasted effort to try to modify the RTMP code to reduce CPU consumption ?

    &#xA;