Recherche avancée

Médias (91)

Autres articles (14)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (2684)

  • avfilter/af_astats : do not clear previous sample value

    26 février 2016, par Paul B Mahol
    avfilter/af_astats : do not clear previous sample value
    

    Should help when using reset=1 and metadata=1

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/af_astats.c
  • How to host a react.js ssr on vercel ?

    2 janvier 2024, par UltimateSheepConfusedAtCode

    I want to host a react.js server side rendering because of ffmpeg killing me with SharedArrayBuffer is not defined

    &#xA;

    I've tried so many hosting service provider like firebase but now I want to host it to Vercel but I don't know how to make it works with react ssr. Can anyone help me ?

    &#xA;

    When I run 'ssr' command in my machine it's work and ffmpeg is not throwing 'bad memory' or 'SharedArrayBuffer is not defined' but when I run it in vercel build command it stucks but the index.js/server.js is running I know because the main script is running and won't stop so the build is stuck but any solution ? I've search the problem but I guess nobody haven't asked this yet

    &#xA;

    A picture of directory

    &#xA;

    and this a code of package.json

    &#xA;

    {&#xA;  "name": "ultimatesheep-vidreverse",&#xA;  "version": "0.1.0",&#xA;  "private": true,&#xA;  "dependencies": {&#xA;    "@babel/preset-env": "^7.18.10",&#xA;    "@babel/preset-react": "^7.18.6",&#xA;    "@babel/register": "^7.18.9",&#xA;    "@ffmpeg/core": "^0.11.0",&#xA;    "@ffmpeg/ffmpeg": "^0.11.0",&#xA;    "@testing-library/jest-dom": "^5.16.5",&#xA;    "@testing-library/react": "^13.3.0",&#xA;    "@testing-library/user-event": "^13.5.0",&#xA;    "bootstrap": "^5.2.0",&#xA;    "cors": "^2.8.5",&#xA;    "ignore-styles": "^5.0.1",&#xA;    "react": "^18.2.0",&#xA;    "react-bootstrap": "^2.5.0",&#xA;    "react-dom": "^18.2.0",&#xA;    "react-scripts": "5.0.1",&#xA;    "uuid": "^8.3.2",&#xA;    "web-vitals": "^2.1.4"&#xA;  },&#xA;  "scripts": {&#xA;    "start": "react-scripts start",&#xA;    "build": "react-scripts build",&#xA;    "test": "react-scripts test",&#xA;    "eject": "react-scripts eject",&#xA;    "ssr": "npm run build &amp;&amp; node backend/index.js",&#xA;    "deploy": "npm run build &amp;&amp; firebase deploy",&#xA;    "git" : "git add . &amp;&amp; git commit -m &#x27;ahawdaw&#x27; &amp;&amp; git push -u origin main"&#xA;  },&#xA;  "eslintConfig": {&#xA;    "extends": [&#xA;      "react-app",&#xA;      "react-app/jest"&#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;  "externals": {&#xA;    "react": "React"&#xA;  },&#xA;  "description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",&#xA;  "main": "backend/index.js",&#xA;  "keywords": [],&#xA;  "author": "",&#xA;  "license": "ISC"&#xA;}&#xA;

    &#xA;

    my vercel settings

    &#xA;

  • random_seed : Rewrite the generic clock() based seed code

    11 juin 2012, par Michael Niedermayer
    random_seed : Rewrite the generic clock() based seed code
    

    The new code is faster and reuses the previous state in case of
    multiple calls.

    The previous code could easily end up in near-infinite loops,
    if the difference between two clock() calls never was larger than
    1.

    This makes fate-parseutils finish in finite time when run in wine,
    if CryptGenRandom isn’t available (which e.g. isn’t available if
    targeting Windows RT/metro).

    Patch originally by Michael Niedermayer but with some modifications
    by Martin Storsjö.

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

    • [DBH] libavutil/random_seed.c