Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (51)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications 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, par

    Certains 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, par

    Mediaspip 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öffinger
    configure : 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>

    • [DH] configure
  • checkasm : add hevc_pel tests

    7 janvier 2021, par Josh Dekker
    checkasm : add hevc_pel tests
    

    Co-authored-by : Niklas Haas <git@haasn.xyz>
    Signed-off-by : Josh Dekker <josh@itanimul.li>

    • [DH] tests/checkasm/Makefile
    • [DH] tests/checkasm/checkasm.c
    • [DH] tests/checkasm/checkasm.h
    • [DH] tests/checkasm/hevc_pel.c
  • Play MJPEG stream to v4l2loopback device

    28 juillet 2020, par ahoffer

    I have a RaspberryPi with a V1 camera.

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    The result is :

    &#xA;

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

    &#xA;


    &#xA;

    What options am I missing from my ffmpeg command ?

    &#xA;