Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (92)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10116)

  • Android : Live Stream RMTP video from Wowza server

    4 décembre 2013, par Tamanna

    I am developing an android application in which i want to publish as well as stream a video..

    What I want is :

    1. My app record a video and that video is sent to server

    2. The recorded vieo will ve streamed live to another android device at the
      same time..

    I have completed the first task using javac and ffmpeg

    I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..

    I dont want to use WebView and play the video in It. I want RMTP player ..

    This task has been completed in iOS.. I want dame for Android..
    Can anyone suggest me some link to fulfill my task ???

    P.S. :

    I am using wowza server and RMTP stream.. I would like to stream RMTP video(.flv).. If no solution avaliable. i can swicth to RSTP

  • FFMpeg : How to stream to Facebook Live ? [closed]

    22 mars 2024, par Thomas Carlton

    I have ffmpeg on Windows.

    


    I would like to stream an mp4 file to Facebook Live. The video has an audio track.

    


    I am running the following command :

    


        ffmpeg 
    -re -i video.mp4 
    -acodec libmp3lame 
    -b:a 128k 
    -pix_fmt yuv420p 
    -profile:v baseline 
    -bufsize 6000k 
    -maxrate 1500k 
    -deinterlace 
    -vcodec libx264 
    -preset veryfast 
    -g 30 
    -r 30 
    -f flv 
    -flvflags no_duration_filesize 
    "rtmps://live-api-s.facebook.com:443/rtmp/mykey"


    


    This command works for exactly 14 frames and then it stops.

    


    enter image description here

    


    Then, I'm getting the following error saying "Conversion failed".

    


    enter image description here

    


    I tried to stream to AWS IVS. But I'm getting the exact same error.

    


    What is wrong with my command ?

    


  • live broadcasting with ffmpeg & icecast2

    1er octobre 2018, par Wasim Khan

    Currently I am live broadcasting mediarecord + nodejs + ffmpeg + icecast2. Streaming using webm is working fine. I need to send mp4 streaming to icecast from webm.

    ffmpeg args below :

    args = [
       '-i', '-',
       '-f', 'webm',
       '-cluster_size_limit', '2M', '-cluster_time_limit', '5100', '-content_type', 'video/webm',
       '-vcodec', 'copy', '-acodec', 'copy',
       iceUrl + '.webm'
     ];

    Anyone have some idea how to send mp4 stream from webm stream to icecast2 ?