Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (77)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (10659)

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