Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (16114)

  • msmpeg4 : Split encoding backend code off from general backend code.

    18 février 2012, par Diego Biurrun

    msmpeg4 : Split encoding backend code off from general backend code.

  • avdevice/decklink : move general code of decklink encoder to common file

    22 septembre 2014, par Deti Fliegl
    avdevice/decklink : move general code of decklink encoder to common file
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/Makefile
    • [DH] libavdevice/decklink_common.cpp
    • [DH] libavdevice/decklink_common.h
    • [DH] libavdevice/decklink_common_c.h
    • [DH] libavdevice/decklink_enc.cpp
    • [DH] libavdevice/decklink_enc.h
    • [DH] libavdevice/decklink_enc_c.c
  • How Can I Configure Storybook to Use React-App-Rewired ?

    8 août 2022, par joseph

    I'm working on a project that implements react-app-rewired to send headers to the server in order to bypass ReferenceError: SharedArrayBuffer is not defined (I'm getting this error from using the @ffmpeg/ffmpeg library).

    &#xA;

    // config-overrides.js&#xA;const {&#xA;  override,&#xA;  // disableEsLint,&#xA;  // addBabelPlugins,&#xA;  // overrideDevServer&#xA;} = require(&#x27;customize-cra&#x27;)&#xA;&#xA;module.exports = {&#xA;  devServer(configFunction) {&#xA;    // eslint-disable-next-line func-names&#xA;    return function (proxy, allowedHost) {&#xA;      const config = configFunction(proxy, allowedHost)&#xA;&#xA;      // Set loose allow origin header to prevent CORS issues&#xA;      config.headers = {&#xA;        &#x27;Access-Control-Allow-Origin&#x27;: &#x27;*&#x27;,&#xA;        &#x27;Cross-Origin-Opener-Policy&#x27;: &#x27;same-origin&#x27;,&#xA;        &#x27;Cross-Origin-Embedder-Policy&#x27;: &#x27;require-corp&#x27;,&#xA;        &#x27;Cross-Origin-Resource-Policy&#x27;: &#x27;cross-origin&#x27;&#xA;      }&#xA;&#xA;      return config&#xA;    }&#xA;  }&#xA;}&#xA;

    &#xA;

    // package.json&#xA;"scripts": {&#xA;  "start": "react-app-rewired start",&#xA;  "build": "react-app-rewired build",&#xA;  "test": "react-app-rewired test  --transformIgnorePatterns \"node_modules/(?!siriwave)/\"",&#xA;  "eject": "react-scripts eject",&#xA;  "storybook": "start-storybook -p 6006 -s public",&#xA;  "build-storybook": "build-storybook -s public"&#xA;}&#xA;

    &#xA;

    Though this works when I run npm start, meaning the headers get sent to the server, it doesn't work when I run npm run storybook, and I still get the SharedArrayBuffer is not defined error. I'm assuming it's because npm run storybook still uses react-scripts as opposed to react-app-rewired under the hood, but I'm not sure where I can change the configurations for this. Any ideas ?

    &#xA;