Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11278)

  • Restreaming and transcoding a hls stream with FFMPEG.WASM fails due to tcp connection

    13 juillet 2021, par Hoang Nguyen

    I'm trying to implement a feature which is live transcoding a hls stream (h265) to another hls stream (h264) so the video can be played using html5 video player as we know that h265 is not supported on browsers. Quick summery of my tech stack :

    


    -Electron desktop app as the client.
-FFMPEG.WASM library : https://ffmpegwasm.github.io/

    


    (*) The on-the-fly transcoding is supposed to happen right on the client side.

    


    My dev enviroment :

    


    "devDependencies": { "electron": "^13.1.5", "electron-packager": "^13.0.1", "electron-winstaller": "^2.7.0" }

    


    There are 2 ways to use this library, one is as normal html script, and the other is nodejs style which I have tried both and get different errors (though they are all about connection) :

    


    (*) Regular JS way

    


    <code class="echappe-js">&lt;script async defer src=&quot;https://unpkg.com/@ffmpeg/ffmpeg@0.10.1/dist/ffmpeg.min.js&quot;&gt;&lt;/script&gt;&#xA;
    

    &#xA;&lt;script&gt;&amp;#xA; async function loadPlayerHEVC() {&amp;#xA;var resource = &amp;#x27;http://10.70.39.32:80/streams/60dd68fdc88f570012526657/stream/60dd68fdc8....526657.m3u8&amp;#x27;&amp;#xA;                    const { createFFmpeg } = FFmpeg;&amp;#xA;                    const ffmpeg = createFFmpeg({ log: true });&amp;#xA;                    const { fetchFile } = FFmpeg;&amp;#xA;                    await ffmpeg.load();&amp;#xA;                    await ffmpeg.run(&amp;#x27;-re&amp;#x27;,&amp;#x27;-i&amp;#x27;, resource, &amp;#x27;-vcodec&amp;#x27;, &amp;#x27;libx264&amp;#x27;, &amp;#x27;-acodec&amp;#x27;, &amp;#x27;copy&amp;#x27;, &amp;#x27;-f&amp;#x27; ,&amp;#x27;hls&amp;#x27;, &amp;#x27;-hls_list_size&amp;#x27;, &amp;#x27;3&amp;#x27;, &amp;#x27;-hls_wrap&amp;#x27;, &amp;#x27;5&amp;#x27;, &amp;#x27;playlist.m3u8&amp;#x27; );&amp;#xA;                    // ffmpeg.exit(0);&amp;#xA;                }&amp;#xA;            &lt;/script&gt;&#xA;

    &#xA;

    enter image description here

    &#xA;

    (*) Nodejs way

    &#xA;

    async function tester(url)&#xA;{&#xA;    const { createFFmpeg, fetchFile } = require(&#x27;@ffmpeg/ffmpeg&#x27;);&#xA;    const ffmpeg = createFFmpeg({ log: true });&#xA;    await ffmpeg.load();&#xA;    await ffmpeg.run(&#x27;tcp&#x27;,&#x27;-re&#x27;, &#x27;-i&#x27;, url, &#x27;-vcodec&#x27;, &#x27;libx264&#x27;, &#x27;-acodec&#x27;, &#x27;aac&#x27;, &#x27;-f&#x27;, &#x27;flv&#x27;, &#x27;-hls_list_size&#x27;, &#x27;3&#x27;, &#x27;-hls_wrap&#x27;, &#x27;5&#x27;, &#x27;playlist.m3u8&#x27;);&#xA;    // ffmpeg.exit(0);&#xA;}&#xA;

    &#xA;

    enter image description here

    &#xA;

    URL for testing

    &#xA;

    You guys can use this public stream to reproduce the scenario : http://113.163.94.245/hls-live/livepkgr/_definst_/liveevent/thbt.m3u8

    &#xA;

    Any help would be much appreciated.

    &#xA;

  • avcodec/ilbcdec : Remove dead code

    9 mai 2024, par Michael Niedermayer
    avcodec/ilbcdec : Remove dead code
    

    Yes the same dead code is in "iLBC Speech Coder ANSI-C Source Code"

    Fixes : CID1509370 Logically dead code

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ilbcdec.c
  • avcodec/libx264 : Check init_get_bits8() return code

    10 mai 2024, par Michael Niedermayer
    avcodec/libx264 : Check init_get_bits8() return code
    

    Fixes : CID1594529 Unchecked return value

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/libx264.c