Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (101)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8668)

  • Why ffmpeg/ffserver does not crop video before streaming ?

    23 juin 2023, par Lyudmila

    I want to stream webcam video to dashboard in Grafana.
I run an ffmpeg command :

    


    /usr/bin/ffmpeg -rtsp_transport tcp -i "rtsp://user:password@IP_camera:554/RVi/1/2" -an -filter:v "crop=192:108:100:100" -c:v libvpx -threads 4 -r 10 http://localhost:5070/feed_webm.ffm


    


    In ffserver.conf :

    


    HTTPPort 5070&#xA;HTTPBindAddress 0.0.0.0&#xA;CustomLog /var/log/ffserver-access.log&#xA;&#xA;<feed>&#xA;   File /tmp/feed_webm.ffm&#xA;   FileMaxSize 200M&#xA;   ACL allow 127.0.0.1&#xA;</feed>&#xA;&#xA;<stream>&#xA;   Feed feed_webm.ffm&#xA;   Format webm&#xA;&#xA;   NoAudio&#xA;&#xA;   VideoCodec libvpx&#xA;   VideoSize 704x576&#xA;   VideoFrameRate 8&#xA;&#xA;   AVOptionVideo flags &#x2B;global_header&#xA;   AVOptionVideo qmin 1&#xA;   AVOptionVideo qmax 31&#xA;&#xA;   PreRoll 15&#xA;   StartSendOnKey&#xA;   VideoBitRate 400&#xA;</stream>&#xA;&#xA;<stream>&#xA;    Format status&#xA;</stream>&#xA;

    &#xA;

    After that, the stream is visible on the dashboard without сrop.

    &#xA;

    If I run an ffmpeg command with save at PC, video is recorded and played with crop :

    &#xA;

    /usr/bin/ffmpeg -rtsp_transport tcp -i "rtsp://user:password@IP_camera:554/RVi/1/2" -an -filter:v "crop=192:108:100:100" -c:v libvpx -threads 4 -r 10 path_to_save/feed.webm&#xA;

    &#xA;

  • avfilter/buffersrc : fix overriding unknown channel layouts with negotiated one

    23 mars 2024, par Marton Balint
    avfilter/buffersrc : fix overriding unknown channel layouts with negotiated one
    

    Fixes ffplay playback of unknown layouts, when SDL directly supports the audio
    format, such as :

    ffplay -f lavfi anullsrc=cl=2C,aformat=s16

    Without the patch, "Channel layout change is not supported" errors are
    generated because buffersrc (unknown 2 channel) and buffersink (stereo)
    negotiated a stereo layout, but the stereo layout was never stored in the
    BufferSourceContext.

    This fixes a regression of 7251f909721a570726775acf61b2b9c28a950c76, but this
    is more of a regression of the avfilter channel layout conversion
    (1f96db959c1235bb7079d354e09914a0a2608f62).

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/buffersrc.c
  • PCM signed 16-bit big-endian planar decoder

    23 juin 2015, par Paul B Mahol
    PCM signed 16-bit big-endian planar decoder
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DBH] doc/general.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/allcodecs.c
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/codec_desc.c
    • [DBH] libavcodec/pcm.c
    • [DBH] libavcodec/utils.c
    • [DBH] libavcodec/version.h
    • [DBH] libavformat/nut.c