Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (65)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (8007)

  • 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