Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (59)

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

  • 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 (9247)

  • Revision c4048dbdd3 : Change to limit the mv search range As the pixel values beyond image border are

    11 août 2013, par Yaowu Xu

    Changed Paths :
     Modify /vp9/common/vp9_enums.h


     Modify /vp9/encoder/vp9_encodeframe.c



    Change to limit the mv search range

    As the pixel values beyond image border are duplicates of pixels
    on edge, the change limits the mv search range, any mv beyond
    the limits no longer produce new/different prediction values
    as entire block with pixels used for subpel interpolation are
    outside image border.

    Change-Id : I4c6fdf06e33c1cef1489f5470ce0fb4e5e01fb79

  • Revision 8dd466edc8 : Changes to use of rectangular partitions. Changes to allow more use of rectangu

    24 juin 2015, par paulwilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_rdopt.h


     Modify /vp9/encoder/vp9_speed_features.c



    Changes to use of rectangular partitions.

    Changes to allow more use of rectangular partitions at
    speeds 1 and 2 for content classed by the first pass as
    animation and for blocks near the active image edge.

    This has quite a big impact in quality for the animated
    test sequence but also hurts encode speed for speed 2.

    For other content types the impact on both speed and
    quality is small.

    Added some plumbing for detection of internal vertical
    image edges.

    Change-Id : I3fc48de2349f8cb87946caaf0b06dbb0ea261a9a

  • stop or kill node media server

    9 juillet 2019, par user_66663333

    I am trying to implement stop feature for live video streaming using node-media-server.

    Basically I want to stop node-media-server completely, restart it later.

    const NodeMediaServer = require("node-media-server");
       let config = {
         logType: 3,
         rtmp: {
           port: rtmpPort,
           chunk_size: 60000,
           gop_cache: true,
           ping: 60,
           ping_timeout: 30,
         },
         http: {
           port: httpPort,
           allow_origin: "*",
         },
         relay: {
           ffmpeg: "/usr/bin/ffmpeg",
           tasks: [
             {
               app: "cctv",
               mode: "static",
               edge: "rtsp://" + cameraUrl + "/h264_ulaw.sdp",
               name: "uterum",
               rtsp_transport: "udp",
             },
           ],
         },
       };

       let nms = new NodeMediaServer(config);
       nms.run();