Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (8)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (4046)

  • ffmpeg install within existing Node.js docker image

    1er septembre 2021, par Peza

    I need to use ffmpeg in a Node.js application that runs in a docker container (created using docker-compose). I'm very new to Docker, and would like to know how to command Docker to install ffmpeg when creating the image.

    



    DockerFile

    



    FROM node:carbon
WORKDIR /usr/src/app

# where available (npm@5+)
COPY package*.json ./
RUN npm install -g nodemon
RUN npm install --only=production
COPY . .

EXPOSE 3000
CMD [ "npm", "start" ] 


    



    package.json :

    



    {
  "name": "radcast-apis",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node ./bin/www",
    "dev": "nodemon --inspect-brk=0.0.0.0:5858 ./bin/www"
  },
  "dependencies": {
    "audioconcat": "^0.1.3",
    "cookie-parser": "~1.4.3",
    "debug": "~2.6.9",
    "express": "~4.16.0",
    "firebase-admin": "^5.12.1",
    "http-errors": "~1.6.2",
    "jade": "~1.11.0",
    "morgan": "~1.9.0"
  },
  "devDependencies": {
    "nodemon": "^1.11.0"
  }
}


    



    docker-compose.yml :

    



    version: "2"
services:
  web:
    volumes:
    - "./app:/src/app"
    build: .
    command: npm run dev
    ports:
    - "3000:3000"
    - "5858:5858"


    


  • How to apply Grain in FFMPEG like CAPCUT Grain adjustment

    9 janvier 2024, par Yander Sanchez

    I'm trying to find information about how to apply grain in video using ffmpeg, but unfortunally i couldn't find a viable solution.

    


    I need to apply a grain like Capcut. Here screenshot

    


    I was reading something about it in ffmpeg documentation page, but i didn't find something related.

    


    


    Documentation i was reading<

    &#xA;

    &#xA;

    Can someone guide me what command I could apply with ffmpeg to be able to get something like this ?&#xA;Here screenshot

    &#xA;

    I need this command to apply it in Node/Express using Fluent-FFmpeg.

    &#xA;

  • Getting content-length of a live-re-encoded video

    9 avril 2021, par Marius

    So, i have a lot of hevc(h265) video on a remote http server, that i want to serve as h264 through ffmpeg and nodejs. I've had a bunch of issues with content-length, or in general just getting skipping, and video duration to work properly.

    &#xA;

    So the main problem is getting content-length, or any other header to make duration and skipping work properly.

    &#xA;

    I've tried calculating approx content-length, but it never seems to match properly.

    &#xA;

    My code so far :

    &#xA;

    express setup here....&#xA;app.get(&#x27;/&#x27;, (req, res) => {&#xA;    res.contentType(&#x27;mp4&#x27;);&#xA;    &#xA;    ffmpeg(remote_video_url)&#xA;        .inputOption([&#xA;            "-hwaccel auto",&#xA;        ])&#xA;        .outputOptions([&#x27;-movflags isml&#x2B;frag_keyframe&#x27;])&#xA;        .videoCodec(&#x27;h264_nvenc&#x27;)&#xA;        .toFormat(&#x27;mp4&#x27;)&#xA;        .on(&#x27;error&#x27;, (err,stdout,stderr) => {&#xA;            console.log(&#x27;an error happened: &#x27; &#x2B; err.message);&#xA;            console.log(&#x27;ffmpeg stdout: &#x27; &#x2B; stdout);&#xA;            console.log(&#x27;ffmpeg stderr: &#x27; &#x2B; stderr);&#xA;        })&#xA;        .on(&#x27;end&#x27;, () => {&#xA;            console.log(&#x27;Processing finished !&#x27;);&#xA;        })&#xA;        .on(&#x27;progress&#x27;, (progress) => {&#xA;            console.log(&#x27;Processing: &#x27; &#x2B; progress.percent &#x2B; &#x27;% done&#x27;);&#xA;        })&#xA;        .pipe(res, {end: true});&#xA;})&#xA;

    &#xA;

    Any help would be greatly appreciated

    &#xA;