Recherche avancée

Médias (91)

Autres articles (76)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (16908)

  • Anomalie #4513 (Fermé) : Undefined au post d’un message de forum public

    6 juillet 2021, par cedric -
  • version.h : Bump minor post 6.0 branch

    19 février 2023, par Michael Niedermayer
    version.h : Bump minor post 6.0 branch
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/version.h
    • [DH] libavdevice/version.h
    • [DH] libavfilter/version.h
    • [DH] libavformat/version.h
    • [DH] libavutil/version.h
    • [DH] libpostproc/version.h
    • [DH] libswresample/version.h
    • [DH] libswscale/version.h
  • Why ffmpeg.wasm throwing this error Uncaught ReferenceError : createFFmpegCore is not defined on deployment

    9 septembre 2022, par EaBengaluru

    Hi I am facing the problem of in (Deployment in my server)

    &#xA;

    &#xA;

    Uncaught ReferenceError : createFFmpegCore is not defined

    &#xA;

    &#xA;

    I'm using https://github.com/ffmpegwasm/ffmpeg.wasm

    &#xA;

    It works in develop mode with $npm run serve but not in Deployment in my server

    &#xA;

    But when I do $npm run build and deployes it in server it throws

    &#xA;

    &#xA;

    Uncaught ReferenceError : createFFmpegCore is not defined

    &#xA;

    &#xA;

    This is how I'm doing in package.json

    &#xA;

    "dependencies": {&#xA;    "@ffmpeg/core": "^0.10.0",&#xA;    "@ffmpeg/ffmpeg": "^0.10.1",&#xA;  }&#xA;

    &#xA;

    I moved the @ffmpeg to /public/@ffmpeg

    &#xA;

     import { createFFmpeg, fetchFile } from &#x27;@ffmpeg/ffmpeg&#x27;;&#xA;&#xA; const ffmpeg = createFFmpeg({ &#xA;      corePath: "@ffmpeg/core/dist/ffmpeg-core.js",&#xA;      log: true&#xA;  });&#xA;

    &#xA;

    My .htaccess file will look something like this

    &#xA;

    <ifmodule>&#xA;  RewriteEngine On&#xA;  RewriteBase /&#xA;  RewriteRule ^index\.html$ - [L]&#xA;  RewriteCond %{REQUEST_FILENAME} !-f&#xA;  RewriteCond %{REQUEST_FILENAME} !-d&#xA;  RewriteRule . /index.html [L]&#xA;  &#xA;    Header add Access-Control-Allow-Origin "*"&#xA;    Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"&#xA;    Header add Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"&#xA;</ifmodule>&#xA;

    &#xA;

    Note : This error only happens in build mode.

    &#xA;

    Still looking for a solution .... Please help me thanks in advance !!!

    &#xA;