Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (111)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

  • Anomalie #3988 : meta cache_signature trop restrictive

    17 août 2017, par Emmanuel Dreyfus

    Est il possible de le proposer en tant que pull request sur
    https://git.spip.net/SPIP/spip (compte de la zone) ou bien sur le
    clone public http://github.com/spip/spip ?

    C’est fait :
    https://github.com/spip/SPIP/pull/26

    Est-ce que je dois lancer des pull requests pour les branches de SPIP ?


    Emmanuel Dreyfus
    http://hcpnet.free.fr/pubz

  • Compiling ffmpeg with emscripten

    18 septembre 2018, par noel

    I’m trying to compile ffmpeg into javascript so that I can decode H264 video streams using node. The streams are H264 frames packed into RTP NALUs so any solution has to be able to accept H264 frames rather than a whole file name.

    I found the Broadway.js library, but I couldn’t get it working and it doesn’t handle P-frames which I need. I also found ffmpeg.js, but could get that to work and it needs a whole file not a stream. Likewise, fluent-ffmpeg doesn’t appear to support file streams ; all of the examples show a filename being passed to the constructor. So I decided to write my own API.

    I have been able to compile ffmpeg into one big js file, but I can’t use it like that. I want to write an API around ffmpeg and then expose those functions to JS. So it seems to me like I need to do the following :

    1. Compile ffmpeg components (avcodec, avutil, etc.) into llvm bitcode.
    2. Write a C wrapper that exposes the decoding functionality and uses EMSCRIPTEN_KEEPALIVE.
    3. Use emcc to compile the wrapper and link it to the bitcode created in step 1.

    I found WASM+ffmpeg, but it’s in Chinese and some of the steps aren’t clear. In particular there is this step :

    emcc web.c process.c ../lib/libavformat.bc ../lib/libavcodec.bc ../lib/libswscale.bc ../lib/libswresample.bc ../lib/libavutil.bc \

    I don’t understand how all the ffmpeg components get compiled into separate *.bc files. I followed the emmake commands in that article and I end up with one big .bc file.

    Does anyone know the steps to compile ffmpeg using emscripten so that I can expose some API to javascript ?

    Is there a better way (with decent documentation) to decode h264 video streams using node ?

  • checkasm : swscale : Fix running the hscale test on 32 bit x86

    16 mai 2020, par Martin Storsjö
    checkasm : swscale : Fix running the hscale test on 32 bit x86
    

    This function doesn't call emms.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/checkasm/sw_scale.c