Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (55)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7347)

  • 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;

  • swscale : fix NEON hscale init

    7 mai 2020, par Josh de Kock
    swscale : fix NEON hscale init
    

    The NEON hscale function only supports X8 filter sizes and should only
    be selected when these are being used. At the moment filterAlign is
    set to 8 but in the future when extra NEON assembly for specific sizes is
    added they will need to have checks here too.

    The immediate usecase for this change is making the hscale checkasm
    test easier and without NEON specific edge-cases (x86 already has these
    guards).

    Signed-off-by : Josh de Kock <josh@itanimul.li>

    • [DH] libswscale/aarch64/swscale.c