Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (49)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9579)

  • http: Send a Range header even when the offset is 0

    2 février 2022, par Justin Ruggles
    http: Send a Range header even when the offset is 0
    

    Using Range allows for getting the full file size from the
    Content-Range header in the response, even if the server sends
    back the response using chunked Transfer-Encoding, which does not
    allow using Content-Length.

    • [DH] libavformat/http.c
  • avcodec/nvenc : update required driver versions for nvenc

    11 avril 2018, par Timo Rothenpieler
    avcodec/nvenc : update required driver versions for nvenc
    
    • [DH] libavcodec/nvenc.c
  • How can I create a side-by-side live video stream output from two separate live webcam feed using ffmpeg ? [duplicate]

    10 août 2021, par shudfht85

    I would like to combine two live webcam feeds of same resolution (say 1280 X 1024) into one side-by-side live video feed output (2560X1024) using ffmpeg.
I found some code from here : https://ffmpeg.org/ffmpeg-filters.html#overlay

    


    ffmpeg -i left.avi -i right.avi -filter_complex "
nullsrc=size=200x100 [background];
[0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
[1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
[background][left]       overlay=shortest=1       [background+left];
[background+left][right] overlay=shortest=1:x=100 [left+right]
"


    


    However, I do not know how I can change the input video from MP4 to a live webcam feed. Any help would be appreciated. Thanks.