
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (76)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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 2011Le 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 Niedermayerversion.h : Bump minor post 6.0 branch
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Why ffmpeg.wasm throwing this error Uncaught ReferenceError : createFFmpegCore is not defined on deployment
9 septembre 2022, par EaBengaluruHi I am facing the problem of in (Deployment in my server)




Uncaught ReferenceError : createFFmpegCore is not defined




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


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

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



Uncaught ReferenceError : createFFmpegCore is not defined




This is how I'm doing in package.json


"dependencies": {
 "@ffmpeg/core": "^0.10.0",
 "@ffmpeg/ffmpeg": "^0.10.1",
 }



I moved the @ffmpeg to /public/@ffmpeg


import { createFFmpeg, fetchFile } from '@ffmpeg/ffmpeg';

 const ffmpeg = createFFmpeg({ 
 corePath: "@ffmpeg/core/dist/ffmpeg-core.js",
 log: true
 });



My .htaccess file will look something like this


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



Note : This error only happens in build mode.


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