Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (7369)

  • Audio Video Sync in live MPTS stream

    6 janvier 2019, par Sachin

    Below is the command i am using to get stream transcoded out put to udp ip. its working fine but not able to sync audio and video . any suggestion where i am missing . stream contain two services. which i am transcoding to MPEG2VIDEO.

    command :

    ffmpeg -re -i udp ://224.2.2.11:1011 -map 0:p:1 -map 0:p:2 -vcodec mpeg2video -s 720x576 -r 25 -flags cgop+ilme -sc_threshold 1000000000 -b:v 4M -minrate:v 4M -maxrate:v 4M -bufsize:v 1.8M -acodec mp2 -ac 2 -b:a 192k -program title=xyz:st=0:st=1 -program title=xyz2:st=2:st=3 -f mpegts udp ://230.0.0.5:1012 ?pkt_size=1316

  • Converting Multiple live streams into frames

    9 janvier 2019, par JATIN SAXENA

    I want to fetch frames from multiple streams and store them in the file System.
    Is there any provision in ffmpeg to do that in a single command by mentioning different input source ?

    I tried using this command :

    ffmpeg -i rtsp_url_1 -f image2 -vf fps=fps=1 AA_image_2%03d.jpeg -i rtsp_url_2 -f image2 -vf fps=fps=4 BB_image_2%03d.jpeg

    But the above command is creating frames from only 1 stream.

  • Need A Besh / Shall Script For Run FFmpeg and Check Error Of Live Streaming

    27 janvier 2019, par Rakibulkst

    Anyone have a Bash/Shall script for run FFmpeg Live Stream Command and checking live streaming error and fix by itself. I try to make it but I become fail because I don’t have enough knowledge about shall script. Can you help me to make this ? I also want to reduce my streaming buffering.

    #!/bin/bash
    while :; do
       ffmpeg -re -i input.ts or m3u8 or just input -r 30 -g 60 -c:v copy -c:a copy -c:s copy -x264-params keyint=60 -bufsize 500k -c:a aac -strict -2 -ar 44100 -b:a 128k -f flv rtmp://xxx-xx-xxx/application/Stream Key null > /dev/null 2>&1
    done &