Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (50)

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Nomenclature #4519 : Renommage de terminologie (blacklist / whitelist)

    16 juillet 2020

    Et linux aussi :
    - https://seenthis.net/messages/867414

    Avec une liste proposée de terminologies :

    Proposed alternatives for master/slave include :

    • primary/secondary
    • main/replica or subordinate
    • initiator/target
    • requester/responder
    • controller/device
    • host/worker or proxy
    • leader/follower
    • director/performer

    Proposed alternatives for blacklist/whitelist include :

    • denylist/allowlist
    • blocklist/passlist
  • MAINTAINERS : add my gpg fingerprint

    22 décembre 2021, par Haihao Xiang
    MAINTAINERS : add my gpg fingerprint
    

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] MAINTAINERS
  • (ffmpeg) How to sync dshow inputs, dropping frames, and -rtbufsize [closed]

    29 juillet 2021, par Zach Fleeman

    I wrote a quick batch script to capture anything from my Elgato HD60 Pro capture card, and while it works in some ways, I don't really understand how certain parameters are affecting my capture.

    &#xA;

    Whenever I run this command without the -rtbufsize 2048M -thread_queue_size 5096 params, I drop a ton of frames. I only added those params with those values because I found them on another stackoverflow thread. I wouldn't mind actually knowing what these do, and how I can fine-tune them for my script.

    &#xA;

    ffmpeg.exe -y -rtbufsize 2048M -thread_queue_size 5096 -fflags &#x2B;igndts ^&#xA;-f dshow -i video="Game Capture HD60 Pro":audio="Game Capture HD60 Pro Audio" ^&#xA;-filter:v "crop=1410:1080:255:0, scale=706x540" ^&#xA;-c:v libx264 -preset veryfast -b:v 1500k -pix_fmt yuv420p ^&#xA;-c:a aac ^&#xA;-f tee -map 0:v -map 0:a "%mydate%_%mytime%_capture.mp4|[f=flv]rtmp://xxx.xxx.xxx.xxx/live"&#xA;

    &#xA;

    In Open Broadcaster Software, my Elgato is a near-instant video feed, but this captures/streams things at a 3-ish second delay, which is okay until I work on this second command. I'm using gdigrab to capture the window from LiveSplit for my speedrunning, but I can't get the video streams to be synced up. I tried adding and modifying another -rtbufsize before the gdigrab input, but again, I'm not sure if this is what I need to do to delay the LiveSplit grab. It seems to always be 2 to 3 seconds ahead of my capture card. How can I get these inputs to be synced and react at the same time ? i.e., I start the timer in LiveSplit at the same time that I hit a button on my super nintendo.

    &#xA;

    ffmpeg.exe -y -rtbufsize 750M -thread_queue_size 5096 ^&#xA;-f dshow  -i video="Game Capture HD60 Pro":audio="Game Capture HD60 Pro Audio" ^&#xA;-rtbufsize 2000M -thread_queue_size 5096 ^&#xA;-f gdigrab -r 60 -i title=LiveSplit ^&#xA;-filter_complex "[0:v][0:v]overlay=255:0 [game];[game][1:v]overlay=0:40 [v]" ^&#xA;-c:v libx264 -preset veryfast -b:v 1500k -pix_fmt yuv420p ^&#xA;-c:a aac ^&#xA;-f tee -map "[v]" -map 0:a "%mydate%_%mytime%_capture.mp4|[f=flv]rtmp://192.168.1.7/live"&#xA;

    &#xA;

    tl ;dr&#xA;Where should I put -rtbufsize ? What value should it be ? And how about -thread_queue_size ? Are these things that I have to specify once or multiple times for each input ? How can I get my different input sources to sync up ?

    &#xA;

    p.s., I'm cropping and overlaying my Elgato inputs because my capture card does 1920x1080, but my video is most likely a 4:3-ish SNES/NES game.

    &#xA;