Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (58)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (10210)

  • lavfi/ebur128 : add sample and true peak metering.

    25 janvier 2014, par Clément Bœsch
    lavfi/ebur128 : add sample and true peak metering.
    

    Metadata injection and logging. Not yet present visually.

    Signed-off-by : Jean First <jeanfirst@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/f_ebur128.c
  • avformat/mp3dec : improve junk skipping heuristic

    20 octobre 2015, par wm4
    avformat/mp3dec : improve junk skipping heuristic
    

    Commit 2b3e9bbfb529e6bde238aeb511b55ebe461664c8 caused problems for a
    certain API user :

    https://code.google.com/p/chromium/issues/detail?id=537725
    https://code.google.com/p/chromium/issues/detail?id=542032

    The problem seems rather arbitrary, because if there’s junk, anything
    can happen. In this case, the imperfect junk skipping just caused it to
    read different junk, from what I can see.

    We can improve the accuracy of junk detection by a lot by checking if 2
    consecutive frames use the same configuration. While in theory it might
    be completely fine for the 1st frame to have a different format than the
    2nd frame, it’s exceedingly unlikely, and I can’t think of a legitimate
    use-case.

    This is approximately the same mpg123 does for junk skipping. The
    set of compared header bits is the same as the libavcodec mp3 parser
    uses for similar purposes.

    • [DH] libavformat/mp3dec.c
  • How to fix ffmpeg,js length error in react-js project | fix error in react project

    19 février 2024, par X3R0

    I've tried to import the ffmpeg js library into my react-typescript project, I can't really update my project's react version or react-scripts due to the current code base.

    &#xA;

    Error

    &#xA;

    ./node_modules/@ffmpeg/ffmpeg/dist/umd/ffmpeg.js&#xA;TypeError: REDACTED_PROJECT_ROOT\node_modules\@ffmpeg\ffmpeg\dist\umd\ffmpeg.js: Cannot read properties of undefined (reading &#x27;length&#x27;)&#xA;

    &#xA;

    Code

    &#xA;

    import React, { useEffect, useRef, useState } from &#x27;react&#x27;;&#xA;import { FFmpeg } from &#x27;@ffmpeg/ffmpeg&#x27;;&#xA;&#xA;/* MORE CODE HERE */&#xA;&#xA;const ffmpeg = new FFmpeg();&#xA;const baseURL = &#x27;https://unpkg.com/@ffmpeg/core@0.12.6/dist/umd&#x27;;&#xA;const coreURL = `${baseURL}/ffmpeg-core.js`;&#xA;const wasmURL = `${baseURL}/ffmpeg-core.wasm`;&#xA;const coreData = await fromURLToBlob(coreURL);&#xA;const wasmData = await fromURLToBlob(wasmURL);&#xA;const coreBlob = new Blob([coreData], { type: "text/javascript"});&#xA;const wasmBlob = new Blob([wasmData], { type: "application/wasm"});&#xA;await ffmpeg.load({&#xA;    coreURL: fromBlobToURL(coreBlob),&#xA;    wasmURL: fromBlobToURL(wasmBlob),&#xA;});       &#xA;&#xA;/* MORE CODE HERE */&#xA;

    &#xA;

    Versions

    &#xA;

    npm v8.19.4&#xA;node v16.20.2&#xA;

    &#xA;

    tsconfig.json

    &#xA;

    {&#xA;  "compilerOptions": {&#xA;    "target": "es5",&#xA;    "lib": [&#xA;      "dom",&#xA;      "dom.iterable",&#xA;      "esnext"&#xA;    ],&#xA;    "allowJs": true,&#xA;    "skipLibCheck": true,&#xA;    "esModuleInterop": true,&#xA;    "allowSyntheticDefaultImports": true,&#xA;    "strict": false,&#xA;    "forceConsistentCasingInFileNames": true,&#xA;    "noFallthroughCasesInSwitch": true,&#xA;    "module": "esnext",&#xA;    "moduleResolution": "node",&#xA;    "resolveJsonModule": true,&#xA;    "isolatedModules": true,&#xA;    "noEmit": true,&#xA;    "jsx": "react-jsx"&#xA;  },&#xA;  "include": [&#xA;    "src"&#xA;  ]&#xA;}&#xA;&#xA;

    &#xA;

    package.json

    &#xA;

    {&#xA;  "name": "frontend",&#xA;  "version": "0.1.0",&#xA;  "private": true,&#xA;  "dependencies": {&#xA;    "@emotion/react": "^11.10.4",&#xA;    "@emotion/styled": "^11.10.4",&#xA;    "@ffmpeg/ffmpeg": "^0.12.10",&#xA;    "@material-ui/core": "^4.12.3",&#xA;    "@mui/base": "^5.0.0-beta.36",&#xA;    "@mui/icons-material": "^5.10.3",&#xA;    "@mui/material": "^5.15.10",&#xA;    "@mui/x-data-grid": "^6.19.2",&#xA;    "@mui/x-data-grid-pro": "^6.19.2",&#xA;    "@reduxjs/toolkit": "^1.8.5",&#xA;    "@testing-library/jest-dom": "^5.14.1",&#xA;    "@testing-library/react": "^11.2.7",&#xA;    "@testing-library/user-event": "^12.8.3",&#xA;    "@toast-ui/editor": "^3.1.3",&#xA;    "@toast-ui/react-editor": "^3.1.3",&#xA;    "@types/jest": "^29.0.1",&#xA;    "@types/node": "^18.7.17",&#xA;    "@types/react": "^17.0.49",&#xA;    "@types/react-dom": "^18.0.6",&#xA;    "@zalando/oauth2-client-js": "^0.0.18",&#xA;    "ajv": "^8.12.0",&#xA;    "ajv-errors": "^3.0.0",&#xA;    "apexcharts": "^3.28.1",&#xA;    "arraybuffer-concat": "^0.0.1",&#xA;    "axios": "^1.4.0",&#xA;    "base64-blob": "^1.4.1",&#xA;    "bootstrap": "^5.1.1",&#xA;    "datetime-diff": "^0.2.1",&#xA;    "fuzzy-time": "^1.0.7",&#xA;    "jquery": "^3.6.0",&#xA;    "jso": "^4.1.1",&#xA;    "luxon": "^2.3.0",&#xA;    "pretty-bytes": "^5.6.0",&#xA;    "react": "^17.0.2",&#xA;    "react-apexcharts": "^1.3.9",&#xA;    "react-beautiful-dnd": "^13.1.0",&#xA;    "react-bootstrap": "^2.0.0-rc.0",&#xA;    "react-dom": "^17.0.2",&#xA;    "react-export-excel": "^0.5.3",&#xA;    "react-facebook": "^9.0.12",&#xA;    "react-helmet": "^6.1.0",&#xA;    "react-icons": "^4.3.1",&#xA;    "react-media-recorder": "^1.6.6",&#xA;    "react-notifications": "^1.7.2",&#xA;    "react-pages": "^0.4.4",&#xA;    "react-redux": "^7.2.8",&#xA;    "react-router": "^5.2.1",&#xA;    "react-router-dom": "^5.2.1",&#xA;    "react-scripts": "4.0.3",&#xA;    "react-toastify": "^8.0.2",&#xA;    "react-tooltip": "^4.2.21",&#xA;    "react-webcam": "^6.0.0",&#xA;    "recharts": "^2.1.8",&#xA;    "redux": "^4.2.0",&#xA;    "redux-thunk": "^2.4.1",&#xA;    "typescript": "^4.8.3",&#xA;    "web-vitals": "^1.1.2",&#xA;    "website-popup": "^3.0.0"&#xA;  },&#xA;  "scripts": {&#xA;    "start": "react-scripts start",&#xA;    "build": "set NODE_OPTIONS=--max-old-space-size=4096 &amp;&amp; react-scripts build --GENERATE_SOURCEMAP=false",&#xA;    "test": "react-scripts test",&#xA;    "eject": "react-scripts eject"&#xA;  },&#xA;  "eslintConfig": {&#xA;    "extends": [&#xA;      "react-app"&#xA;    ]&#xA;  },&#xA;  "browserslist": {&#xA;    "production": [&#xA;      ">0.2%",&#xA;      "not dead",&#xA;      "not op_mini all"&#xA;    ],&#xA;    "development": [&#xA;      "last 1 chrome version",&#xA;      "last 1 firefox version",&#xA;      "last 1 safari version"&#xA;    ]&#xA;  },&#xA;  "devDependencies": {&#xA;    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6"&#xA;  }&#xA;}&#xA;&#xA;

    &#xA;