Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (9)

  • 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 v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (2828)

  • Processing a video stream over websocket with opencv

    25 avril 2019, par Patrick Connors

    I’m trying to stream video over a websocket and process it server-side with Node.JS. The client is reading from a video file (.mp4) and sending it over the web socket via a stream object. However, I’m having trouble extracting frames from the stream at the server so it can be processed by opencv.

    Do I need to break the video up into frames and stream each individual frame ? What format can opencv most easily process in real time ?

    The end goal here is to enable opencv to process each frame of a video (in real time) that is being received by the server. Think I’m having some trouble understanding the paradigm here.

  • lavf/segment : Mark output contexts as non-seekable when applicable

    29 mars 2015, par Rodger Combs
    lavf/segment : Mark output contexts as non-seekable when applicable
    

    This prevents sub-muxers from trying to seek back to the beginning of the
    whole stream, only to find themselves overwriting some video data in the
    current (often last) segment.

    We only do this when not writing individual header/trailers.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/segment.c
  • Use ffmpeg to show a webcam live stream in a browser

    20 juillet 2020, par Toast

    I have a webcam that is connected to a server and I'd like to view a live stream of it in a web browser.

    &#xA;

    I'd like to include a video tag like this :

    &#xA;

    <video></video>&#xA;

    &#xA;

    What is an ffmpeg command that will send a video stream to browser clients ?&#xA;I managed to record a video to disk with this command :

    &#xA;

    ffmpeg -f v4l2 -i /dev/video0 output.mkv&#xA;

    &#xA;

    I'm not sure if rtsp and ffmpeg are a good choice and I'm open for alternative suggestions.&#xA;I'm looking for a solution that is simple to setup and demo. Scalability and support for older browsers don't matter and audio isn't needed. I'd prefer a solution that sends compressed video instead of individual images (MJPG).

    &#xA;