
Recherche avancée
Autres articles (51)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (8640)
-
configure : add fallback to $arch in msvc assembler check.
23 janvier 2021, par Reimar Döffingerconfigure : add fallback to $arch in msvc assembler check.
Setting the defaults for $arch happens only later, so
the current code would not set AS correctly if —arch
was not specified on the command-line.
Fix it by adding an explicit fallback to $arch_default.Signed-off-by : Josh Dekker <josh@itanimul.li>
-
checkasm : add hevc_pel tests
7 janvier 2021, par Josh Dekker -
Play MJPEG stream to v4l2loopback device
28 juillet 2020, par ahofferI have a RaspberryPi with a V1 camera.


I want to use it as my camera for Zoom, Teams, and other virtual meetings.


I have the RaspberryPi streaming motion JPEG over http using the application named "Motion".


I created a v4l2 dummy device on my linux laptop as a virtual camera.


However, I can't get the mjpeg stream to play to the v4l2 dummy device with the simple command :


ffmpeg -i "http://milan.local:8081" -map 0:v -f v4l2 /dev/video4


The result is :


Input #0, mpjpeg, from 'http://milan.local:8081':
 Duration: N/A, bitrate: N/A
 Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 640x480 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc
Stream mapping:
 Stream #0:0 -> #0:0 (mjpeg (native) -> rawvideo (native))
Press [q] to stop, [?] for help
[v4l2 @ 0x55a04567bbe0] Unknown V4L2 pixel format equivalent for yuvj420p
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:0 --




What options am I missing from my
ffmpeg
command ?