Recherche avancée

Médias (91)

Autres articles (39)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6059)

  • MAINTAINERS : add Communication section

    6 octobre 2013, par Lou Logan
    MAINTAINERS : add Communication section
    

    Add Twitter with myself (Lou Logan) as maintainer.

    Add Google+ with Paul B Mahol, Michael Niedermayer, and Alexander
    Strasser as maintainers.

    Move website and mailinglists from Miscellaneous Areas to
    Communication.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] MAINTAINERS
  • Merge commit ’894682a9739eb8d4bfc024b0d4e5757fcfe47378’

    18 juin 2014, par Michael Niedermayer
    Merge commit ’894682a9739eb8d4bfc024b0d4e5757fcfe47378’
    

    * commit ’894682a9739eb8d4bfc024b0d4e5757fcfe47378’ :
    Remove avserver.

    Conflicts :
    .gitignore
    Changelog
    Makefile
    configure
    doc/ffserver.conf
    doc/ffserver.texi
    doc/general.texi
    ffserver.c
    libavformat/Makefile
    libavformat/ffm.h
    libavformat/ffmdec.c
    libavformat/ffmenc.c
    tests/fate/avformat.mak
    tests/lavf-regression.sh
    tests/ref/lavf/ffm
    tests/ref/seek/lavf-ffm

    Not merged, ffserver does have a maintainer
    co maintainers are welcome and needed though !

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • Pass ffmpeg Stream to cv2

    28 avril 2021, par Georg

    I would like to use the redirection operator to bring the stream from ffmpeg to cv2 so that I can recognize or mark the faces on the stream and redirect this stream again so that it runs under another stream.

    &#xA;

    One withoutfacedetect and One withfacedetect.

    &#xA;

    raspivid -w 1920 -h 1080 -fps 30 -o - -t 0 -vf -hf -b 6000000 | ffmpeg -f h264 -i - -vcodec copy -acodec aac -ab 128k -g 50 -strict experimental -f tee -map 0:v "[f=flv]rtmp://xx.xx.xx.xx/live/withoutfacedetect |[f=h264]pipe:1" > test.mp4&#xA;

    &#xA;

    I then read up on CV2 and came across the article.

    &#xA;

    https://www.bogotobogo.com/python/OpenCV_Python/python_opencv3_Image_Object_Detection_Face_Detection_Haar_Cascade_Classifiers.php

    &#xA;

    I then ran the script with my picture and was very amazed that there was a square around my face.

    &#xA;

    But now back to business. What is the best way to do this ?

    &#xA;