Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (11)

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

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (4909)

  • C# - Streaming video from IP Camera with overlay to Facebook Live

    6 avril 2018, par Justin Li

    I am currently working on a project where I am trying to have a C# application connect to multiple IP Cameras where I will add an overlay and continue to forward that stream to an RTMP server like Facebook Live. I am currently using the Ozeki Camera SDK to work with my IP Cameras but I have looked into using AForge as well.

    I have everything set up to stream and overlay but I am having some trouble understanding how I can convert video and audio to be stream-able to the Facebook RTMP server. It seems I have to have an encoder for the video but after Googling, I am coming up short with methods of how to achieve this. I am hoping that someone has some experience in this field can give me a hand.

    Thanks in advance.

  • FFPLAY unable to facebook live stream url i.e. rtmps url

    1er mai 2020, par Shankar

    I am trying to play facebook live streraming url using ffplay where i have used rtmps stream url & stream key. I have enabled openssl library and rtmps library in ffmpeg. But while running command of ffplay with stream url & key, i am getting Pull function error.
    
So is there any solution known please let me know.
Thank you.

    


  • how to deal with live raw h264 stream to send over network

    3 novembre 2015, par jinhwan

    what I want to do is that send live camera stream which is encoded by h264 to gstreamer. I already have seen many example which send over network by using rtp and mpeg-ts. But problem is that all those examples assume that the input will be served by fixed file or live stream which is already transcoded in transport portocol like below.

    client :
    gst-launch-1.0 videotestsrc horizontal-speed=5 ! x264enc tune="zerolatency" threads=1 ! mpegtsmux ! tcpserversink host=192.168.0.211 port=8554

    server : gst-launch-1.0 tcpclientsrc port=8554 host=192.168.0.211 ! tsdemux ! h264parse ! avdec_h264 ! xvimagesink

    But, My camera offer the below interface (written in java, actually work on adnroid). The interface offer just live raw h264 blocks.

    mReceivedVideoDataCallBack=newDJIReceivedVideoDataCallBack(){
       @Override
       public void onResult(byte[] videoBuffer, int size)
       {
    }

    I can create tcp session to send those data block. But, how can i make those data which is not packed in transport protocol into format which is understable by gstreamer tcpclient ?
    Transcode the original stream in ts format in the camera side can be a solution. But i have no clue to do transcode from non-file and non-transport-format data. I have searched gstreamer and ffmpeg, But I could not derive a way to deal h264 block stream using the supported interface, unitl now.
    Or, Are there any way to make gstreamer to directly accept those simple raw h264 block ?