Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (72)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8230)

  • avcodec/v4l2_context : return EAGAIN to signal full buffers

    16 août 2020, par Andriy Gelman
    avcodec/v4l2_context : return EAGAIN to signal full buffers
    

    Return proper error when frame buffers are full. This path is triggered
    on the DragonBoard 410c since the encoding API change in commit
    827d6fe73d2f5472c1c2.

    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>
    Reviewed-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/v4l2_context.c
  • Run ffmpeg on windows - real-time buffer [USB Camera] [video input] too full or near too full frame dropped

    14 juillet 2020, par Nikola Lukic

    I got successed on macos and linux with :

    &#xA;

    Linux :

    &#xA;

    ffmpeg \&#xA;    -f v4l2 \&#xA;    -framerate 25 -video_size 640x480 -i /dev/video0 \&#xA;    -f mpegts \&#xA;    -codec:v mpeg1video -s 640x480 -b:v 1000k -bf 0 \&#xA;    http://localhost:8081/supersecret&#xA;

    &#xA;

    MacOS test :

    &#xA;

      ffmpeg -f avfoundation -framerate 30 -video_size 640x480 \&#xA;  -i "0" -f mpegts -codec:v mpeg2video -s 640x480 -b:v 1000k \&#xA;  -bf 0 http://localhost:8081/supersecret&#xA;

    &#xA;

    I already installed ffmpeg on windows a just need correct command.

    &#xA;

    My error log is :

    &#xA;

    &#xA;

    /dev/video0: No such file or directory

    &#xA;

    &#xA;

    Update :

    &#xA;

    After ffmpeg -list_devices true -f dshow -i dummy i got :

    &#xA;

    ...&#xA;[dshow @ 000001985949ce80] DirectShow video devices (some may be both video and audio devices)&#xA;[dshow @ 000001985949ce80]  "USB Camera"&#xA;[dshow @ 000001985949ce80]     Alternative name "@device_pnp_\\?\usb#vid_0c45&amp;pid_6340&amp;mi_00#6&amp;313cdc8e&amp;0&amp;0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"&#xA;...&#xA;

    &#xA;

    Than i try to run my server with :

    &#xA;

    ffmpeg -f dshow -i video="USB Camera"  -framerate 30 -video_size 640x480 -f mpegts -codec:v mpeg2video -s 640x480 -b:v 1000k -bf 0 http://localhost:8081/supersecret&#xA;

    &#xA;

    And i catch this log :

    &#xA;

    Input #0, dshow, from &#x27;video=USB Camera&#x27;:&#xA;  Duration: N/A, start: 27271.559000, bitrate: N/A&#xA;    Stream #0:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 640x480, 30 fps, 30 tbr, 10000k tbn, 10000k tbc&#xA;[dshow @ 0000022a4be9f0c0] real-time buffer [USB Camera] [video input] too full or near too full (101% of size: 3041280 [rtbufsize parameter])! frame dropped!&#xA;    Last message repeated 173 times&#xA;[tcp @ 0000022a4beae340] Connection to tcp://localhost:8081 failed: Error number -138 occurred&#xA;http://localhost:8081/supersecret: Unknown error&#xA;[dshow @ 0000022a4be9f0c0] real-time buffer [USB Camera] [video input] too full or near too full (101% of size: 3041280 [rtbufsize parameter])! frame dropped!&#xA;

    &#xA;

  • (FFMPEG Error)Real-time buffer [USB cam's name] too full or near too full

    9 juin 2020, par ZzangWoo

    I am doing project about making rtsp stream of my USB Camera.&#xA;And my project environment is &#xA;- OS : windows server 2019&#xA;- CPU : AMD Ryzen 7 3700X&#xA;- RAM : 64GB&#xA;- GPU : NVIDIA GeForce RTX 2070 SUPER

    &#xA;&#xA;

    My project goal is to detect object with YOLO and show original cam video, detected video to client. So I need to change my USB Camera to RTSP Stream. But I had an error below picture.&#xA;enter image description here

    &#xA;&#xA;

    And this is my command line.

    &#xA;&#xA;

    ffmpeg -re -f dshow -i video="JOYTRON HD20" -pix_fmt yuv420p -vsync 1 -threads 0 -vcodec libx264 -r 30 -g 60 -sc_threshold 0 -b:v 640k -bufsize 768k -maxrate 800k -preset veryfast -profile:v baseline -tune film -acodec aac -b:a 128k -ac 2 -ar 48000 -f rtsp rtsp ://localhost:8888/test

    &#xA;&#xA;

    I saw an answer that the problem is bandwidth. So I added parameter. It didnt help.

    &#xA;&#xA;

    I also added the -rtbufsize parameter and -thread_queue_size parameter. But it didnt help anything.

    &#xA;&#xA;

    What should I do ??

    &#xA;