
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (30)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (7016)
-
configure : add section for libc-specific hacks
4 septembre 2012, par Mans Rullgardconfigure : add section for libc-specific hacks
-
avconv : remove some codec-specific hacks
9 novembre 2011, par Anton Khirnovavconv : remove some codec-specific hacks
-
Issue capturing video within device specs from a USB Grabber with ffmpeg & directshow
11 octobre 2019, par leoncvltI am using a USB Grabber (this one : http://www.logilink.com/Suche/vg0001a) to capture some old VHS footage. I am using ffmpeg with directshow to do so. The device properties are as follows :
[dshow @ 000001d57618a300] DirectShow video device options (from video devices)
[dshow @ 000001d57618a300] Pin "Capture" (alternative pin name "0")
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=640x480 fps=5 max s=640x480 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=160x120 fps=5 max s=160x120 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=176x144 fps=5 max s=176x144 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=320x240 fps=5 max s=320x240 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=352x288 fps=5 max s=352x288 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=720x480 fps=5 max s=720x480 fps=30
[dshow @ 000001d57618a300] pixel_format=yuyv422 min s=720x576 fps=5 max s=720x576 fps=30
[dshow @ 000001d57618a300] pixel_format=yuv420p min s=640x480 fps=5 max s=640x480 fps=30
[dshow @ 000001d57618a300] pixel_format=yuv420p min s=160x120 fps=5 max s=160x120 fps=30
[dshow @ 000001d57618a300] pixel_format=yuv420p min s=176x144 fps=5 max s=176x144 fps=30
[dshow @ 000001d57618a300] pixel_format=yuv420p min s=320x240 fps=5 max s=320x240 fps=30
[dshow @ 000001d57618a300] pixel_format=yuv420p min s=352x288 fps=5 max s=352x288 fps=30
[dshow @ 000001d57618a300] Crossbar Switching Information for USB2.0 Grabber:
[dshow @ 000001d57618a300] Crossbar Output pin 0: "Video Decoder" related output pin: 1 current input pin: 0 compatible input pins: 0 1
[dshow @ 000001d57618a300] Crossbar Output pin 1: "Audio Decoder" related output pin: 0 current input pin: 4 compatible input pins: 3 4
[dshow @ 000001d57618a300] Crossbar Input pin 0 - "Video Composite" related input pin: 4
[dshow @ 000001d57618a300] Crossbar Input pin 1 - "S-Video" related input pin: 4
[dshow @ 000001d57618a300] Crossbar Input pin 2 - "Video Tuner" related input pin: 3
[dshow @ 000001d57618a300] Crossbar Input pin 3 - "Audio Tuner" related input pin: 2
[dshow @ 000001d57618a300] Crossbar Input pin 4 - "Audio Line" related input pin: 0I ran some tests and can capture and re-encode on the fly just fine at a variety of resolutions at both yuv420p and yuyv422 with the following command :
ffmpeg -f dshow -pixel_format yuyv422 -video_size 720x480 -framerate 25 -i video="USB2.0 Grabber":audio="Digital Audio Interface (USB Audio Interface)" -c:v libx264 -crf 18 -aspect 4:3 -vf "yadif=1" -pix_fmt yuv420p -c:a aac -b:a 392k capture.mp4
However, when I set
-pixel_format yuyv422 -video_size 720x576 -framerate 25
which is within specs of the device, the process fails with aToo many packets buffered for output stream 0:1.
. I tried increasing the buffer size with-rtbufsize
and while the process starts, the video is never captured and the frame count is stuck at zero while converting - audio is captured fine.I thought it was the encoding not being able to keep up, but streaming the video or capturing the raw video feed with
-vcodec copy
I encounter the same issues.Using VLC to play from a capture device plays the audio only when using 720x576 as the size, while lower resolutions play fine, which make me think the issue is either with the device or me leaving out some specific directshow option.
Any ideas ?