Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (67)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (5663)

  • Save http stream video android

    11 novembre 2013, par ChebTS

    For one of my android projects I need to implement saving of video from HTTP stream (right now I am just show live stream video to user).

    I google that problem and find some solution, I can use FFmpeg. But FFmpeg is c++ library.

    Is there are some easy way to save video from HTTP stream ?

  • C# FFMPEG - How to get extracted frames without save in file system

    4 janvier 2023, par kadam

    I need to process frames from video and live stream without saving into file system.

    


    C# I am trying using below code, but not getting frames

    


    Process proc = new Process();
            proc.StartInfo.FileName = @"E:\ffmpeg\bin\ffmpeg.exe";
            proc.StartInfo.Arguments = String.Format(@"-i E:\ffmpeg\bin\video.mp4 -f rawvideo pipe:1");
            proc.StartInfo.UseShellExecute = false;
            proc.StartInfo.RedirectStandardOutput = true;
            proc.Start();
proc.OutputDataReceived += (sender, args) => DataReceived(args);
            proc.ErrorDataReceived += (sender, args) => DataReceived(args);


    


    I can get frames in nodejs successfully using below code

    


    
const spawnProcess = require('child_process').spawn
    ffmpeg = spawnProcess('E:\\ffmpeg\\bin\\ffmpeg.exe', [
      '-i', 'rtsp://username:password@192.168.6.37/ch1/main/sub-stream',
      '-vcodec', 'mjpeg','-vf','fps=2',
      '-f', 'rawvideo',
      //'-s', HW, // size of one frame
      'pipe:1'
  ]);
      ffmpeg.stderr.pipe(logStream);
      let frames = [];
      ffmpeg.stdout.pipe(new ExtractFrames("FFD8FF")).on('data', (data) => {
        var fName=new Date().getTime()+".png";
        (
          async () => await ProcessFrame(Buffer.from(data).toString('base64'))
        )();
      })


    


    Same thing await ProcessFrame(Buffer.from(data).toString('base64')) I want in C#

    


  • Prep for next release : HTML5, homepage + stylistic updates, source code order change for API docs (CTRL-F search now hits left column first)

    4 juillet 2011

    + demo/_image/wheelsofsteel-single-deck-256.jpg m demo/index.css m doc/index.html m index.html Prep for next release : HTML5, homepage + stylistic updates, source code order change for API docs (CTRL-F search now hits left column (...)