Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (57)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (11143)

  • Duplicate the camera streaming with FFMPEG and Python

    5 janvier 2021, par Hung Le

    Python : 3.6, Ubuntu 18.04, OpenCV 4.1.0

    


    I have an IP camera that streams video data in H.264/H.265 encoding. I would like to take this video stream and duplicate this stream into multiple streams by using Python without any encoding or decoding. I am supposing that the camera stream is rtsp protocol. The output of multiple streams can be any types as long as the system can the get the real time processing.

    


  • Streaming ffmpeg.exe stdout

    11 novembre 2012, par Gent

    I need to stream the standard output from ffmpeg.exe directly to a web response stream on the fly. I have no problem setting up the command line with Process/RedirectStandardOutput/etc to pipe the output stream.

    However, the problem seems to be the output from Process.StandardOutput is not in the correct raw format. Something like this (pseudocode) :

    var ffpsi = new ProcessStartInfo("ffmpeg.exe", "-i input.mp3 -acodec copy -f mp3 -")
    ffpsi.UseShellExecute = false;
    ffpsi.RedirectStandardOutput = true;
    var ffmpegProcess = new Process();
    ffpmpegProcess.StartInfo = ffpsi;

    ffmpegProcess.Start();

    var outputFile = new FileStream("out.mp3");
    ffmpegProcess.StandardOutput.BaseStream.CopyTo(outputFile);

    creates a file a little larger than the original and it's clearly not a valid MP3.

    I've played with various encodings copying strategies with the base streams and get data from the async callbacks, but nothing seems to work.

    Any ideas here ? I guess this comes down to how to get the raw binary output from ffmpeg stdout into a .NET stream I can pass to a response stream ?

  • Is it possible to read streaming response body using fiber ?

    2 novembre 2023, par MHM

    I have a streaming server(ffmpeg) that send data through HTTP.
I sent the stream to my fiber backend but I only have access to c.body() when the stream server(ffmpeg) is terminated.
Is there any way to capture streamed data in real-time in fiber ?

    


    here is my sample code :

    


    package main

import "github.com/gofiber/fiber/v2"

func main() {
  app := fiber.New()
  
app.Post("/", func(c *fiber.Ctx) error {
    golang        // real-time reading streamed data in c.body() and send it to fiber websocket
        return c.SendStatus(200)

}