Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (40)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7854)

  • 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 ?