Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (63)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (8902)

  • avcodec/mpeg_er : Simplify disabling IDCT

    13 juin 2024, par Andreas Rheinhardt
    avcodec/mpeg_er : Simplify disabling IDCT
    

    The error resilience code does not make up block coefficients
    and therefore zeroes them in order to disable the IDCT.
    But this can be done in a simpler manner, namely by setting
    block_last_index to a negative value. Doing so also has
    the advantage that the dct_unquantize functions are never even
    called for those codecs that do not use ff_mpv_reconstruct_mb()
    for ordinary decoding (namely RV-30/40 and the VC-1 family).

    This approach would not work for intra macroblocks (there is always
    at least one coefficient for them and therefore there is no check
    for block_last_index for them), but this does not happen at all.
    Add an assert for this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg_er.c
  • Anomalie #3014 : Chaines de langue de "Forums" utilisées dans la "dist"

    24 décembre 2017, par b b

    Pour info, voici les occurrences de chaînes de langue de forum dans la dist à ce jour :

    grep -nHIirF —exclude=*.svn-base — :forum : .
    ./404.html:36 :            [(#ENVfond_erreur|==forum|oui)

    <:forum:aucun_message_forum :>

    ]
    ./article.html:56 : [

    <:forum:form_pet_message_commentaire :>

    ./inclure/forum.html:17 :

    <:accueil_site :> &gt ; ... &gt ; <:forum:forum :> #ID_FORUM

    ./forum.html:28 : [

    (#TITRE|sinon<:forum:forum :> #ID_FORUM)

    ]
    ./forum.html:38 :

    <:forum:forum_avez_selectionne :> #TITRE

    ./forum.html:41 : [

    <:forum:form_pet_message_commentaire :>

    ./breve.html:43 : [

    <:forum:form_pet_message_commentaire :>

  • stream usb webcam via http using vlc without transcoding using mjpeg signal from webcam

    10 novembre 2020, par Peter Nußreiner

    I wanna stream my (Microsoft live) USB webcam using vlc from a raspberry.&#xA;While it works perfectely fine with transcoding my raspberry does not have enough power.

    &#xA;

    So I checked the output formats of my webcam using :

    &#xA;

    ffmpeg -f v4l2 -list_formats all -i /dev/video0&#xA;

    &#xA;

    wich gives me the following output :

    &#xA;

    [video4linux2,v4l2 @ 0x559d5aee36c0] Raw       :     yuyv422 :           YUYV 4:2:2 : 640x480 1280x720 960x544 800x448 640x360 424x240 352x288 320x240 800x600 176x144 160x120 1280x800&#xA;[video4linux2,v4l2 @ 0x559d5aee36c0] Compressed:       mjpeg :          Motion-JPEG : 640x480 1280x720 960x544 800x448 640x360 800x600 416x240 352x288 176x144 320x240 160x120&#xA;/dev/video0: Immediate exit requested&#xA;

    &#xA;

    when running my streaming command :

    &#xA;

    cvlc v4l2:///dev/video0:chroma=h264:width=1280:height=720 --sout &#x27;#standard{access=http,mux=ts,dst=192.168.178.27:8080,name=stream,mime=video/ts}&#x27; -vvv&#xA;

    &#xA;

    I get the following error :

    &#xA;

    mux_ts mux warning: rejecting stream with unsupported codec YUY2&#xA;main mux error: cannot add this stream&#xA;main decoder error: cannot create packetizer output (YUY2)&#xA;

    &#xA;

    along with many other lines of information.&#xA;As far as I can interpret the error, vlc wants to use the YUY2 RAW signal of my webcam.&#xA;Is there any way I can force vlc to use the mjpg output of my camera ?

    &#xA;

    I've already tried to use 'chroma=mjpg' without success.&#xA;Transcoding is not an alternative as my raspi has by far not enough power.

    &#xA;

    I've also read about using ffmpeg for streaming, maybe someone has an alternative solution since I'm very new to the whole topic of websites and stuff

    &#xA;

    It will (or should) be used as a live webcam for a windsurfing spot.&#xA;Therefore I need a fluent video with at least 10fps to judge the situation. A delay of a minute or so is no problem.&#xA;The basic idea was to stream the video to a webserver and embed the image in a website. I've got good internet connection at the spot.

    &#xA;

    But for now I want to try it locally on my pc.

    &#xA;