Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (49)

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

  • mov : Trim dref absolute path

    16 février 2016, par Vittorio Giovara
    mov : Trim dref absolute path
    

    Samples produced by Omneon (Harmonic) store external references with
    paths ending with 0s. Such movs cannot be loaded properly since every
    0 is converted to ’/’, to keep the same parsing code for dref type 2
    and type 18 : this makes the external reference point to a non-existing
    direactory, rather than to the actual referenced file.

    Add a brief trimming loop that drops all ending 0s before trying to
    parse the external reference path.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavformat/mov.c
  • error enoent when assigning path to ffmpeg

    12 septembre 2022, par seriously

    I am trying to set up a relay from my rtmp server and I'm using an npm module called node-media-server. I have set up my rtmp protocol successfully but when I am trying to set up the relay it expects me to add a path my my ffmpeg library so i npm installed ffmpeg then supplied the node_module path to the relay but I keep on getting error uncaughtException Error: spawn C:\blah\blah\node_modules\ffmpeg ENOENT the ffmpeg library definitely exist at the specified location. Why is this happening ? Thanks in advance.

    &#xA;

    Link to the module im using : https://www.npmjs.com/package/node-media-server

    &#xA;

    &#xD;&#xA;
    &#xD;&#xA;
    const NodeMediaServer = require(&#x27;node-media-server&#x27;);&#xA;const path = require(&#x27;path&#x27;)&#xA;const ffmpegPath = path.join(__dirname, &#x27;..&#x27;, &#x27;node_modules&#x27;, &#x27;ffmpeg&#x27;)&#xA;&#xA;const config = {&#xA;  rtmp: {&#xA;    port: 1935,&#xA;    chunk_size: 60000,&#xA;    gop_cache: true,&#xA;    ping: 30,&#xA;    ping_timeout: 60&#xA;  },&#xA;  http: {&#xA;    port: 8000,&#xA;    allow_origin: &#x27;*&#x27;&#xA;  },&#xA;  relay: {&#xA;    ffmpeg: ffmpegPath,&#xA;    tasks: [{&#xA;        app: &#x27;live&#x27;,&#xA;        mode: &#x27;push&#x27;,&#xA;        edge: &#x27;rtmp://localhost:1936&#x27;,&#xA;      },&#xA;      {&#xA;        app: &#x27;live&#x27;,&#xA;        mode: &#x27;push&#x27;,&#xA;        edge: &#x27;rtmp://localhost:1937&#x27;,&#xA;      }&#xA;    ]&#xA;  }&#xA;};&#xA;&#xA;var nms = new NodeMediaServer(config)&#xA;nms.run();

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;

  • lavu/frame : fix malloc error path in av_frame_copy_props()

    15 décembre 2014, par wm4
    lavu/frame : fix malloc error path in av_frame_copy_props()
    

    The error path frees all side data, but forgets to reset the side data
    count. This can blow up later in av_frame_unref() and free_side_data().

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

    • [DH] libavutil/frame.c