Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (98)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6480)

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