Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (32)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (3522)

  • Combining Opencv Raw frames with Microphone Audio stream Using ffmpeg

    10 août 2022, par Abhishek Vats

    I am trying to build a sports analysis platform where I have a deep learning model which processes Live video(RTMP/Webcam) frames, applies overlays,score etc. and then I need to combine it with microphone audio and rebroadcast with audio and video in sync. I think I need the presentation time stamps of the frames (Since AI frame processing takes variable time) and somehow provide ffmpeg with it but I'm lost and could not find a similar example doing this.

    


  • How to include MPEG codec ?

    22 décembre 2018, par Edin Hajdarevic

    Why embed video streams are not visible in my c++ program ? I added WebBrowser into the program and the page that Browser should show is embed video stream. When I compile and run program, and when I press connect (button that should load web browser) it just loads black screen. That’s when I use just embed video stream (valid one), when I use whole site where stream is, program loads whole site, expect stream which is black. What might be problem ?

    I tagged html and css in this post since they might know something about it too.

    void__fastcall TForm1::Button1Click(TObject *Sender)
    {
       UnicodeString code, key;
       int br;

       code = Edit1->Text;

       if (code=="C577F") br=1;
       if (code=="A9967") br=2;
       if (code=="G02C1") br=3;
       if (code=="TB4FA") br=4;
       if (code=="U3E4B") br=5;
       if (code=="KR11V") br=6;
       if (code=="DFF9D") br=7;
       if (code=="L738D") br=8;
       if (code=="AA46C") br=9;
       if (code=="EC6E7") br=10;
       if (code=="T7BCE") br=11;
       if (code=="JT429") br=12;
       if (code=="R5F2C") br=13;
       if (code=="O582B") br=14;
       if (code=="A1FB4") br=15;

       switch(br)
       {
           case 1:
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=1";
               break;
           case 2:
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=2";
               break;
           case 3:
               key="3";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=3";
               break;
           case 4:
               key="4";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=4";
               break;
           case 5:
               key="5";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=5";
               break;
           case 6:
               key="6";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=6";
               break;
           case 7:
               key="7";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=7";
               break;
           case 8:
               key="8";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=8";
               break;
           case 9:
               key="9";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=9";
               break;
           case 10:
               key="10";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=10";
               break;
           case 11:
               key="11";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=11";
               break;
           case 12:
               key="12";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=12";
               break;
           case 13:
               key="13";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=13";
               break;
           case 14:
               key="14";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=14";
               break;
           case 15:
               key="15";
               WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=15";
               break;
           default:
               ShowMessage("Code not valid. Contact @account on instagram for a new one.");

       }
    }
  • Draw on Android video and save

    23 novembre 2015, par YI YANG

    I am a beginner to the Android meida programming, so if I have any problem please tell me, thank you very much.

    Recentally, I saw an IOS version App called V1 Sports ! it allows you to record a video and then draw lines, circles or any shapes on the video. Those shapes are stored, next time when you open your video, the shapes are still there, unless you clear the shapes overlay on the video.

    I am wondering how to implement those functions on an Android deveice, it is so cool. Use ffmpeg or something like that ? I do not know where to start. Please tell me some hints Thank you very much.