Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (11558)

  • How to convert scte 128 closed caption data to a53 closed caption data ffmpeg ?

    1er novembre 2019, par sagar patel

    I have decoder which is not supported for scte 128 caption, Only support scte a53 caption data.I want to convert scte 128 caption data to scte a53 caption data.

    -If any idea or logic to convert scte 128 to a53 caption in ffmpeg.

    -Currently ffmpeg only support scte a53 caption data.I want add support to convert scte 128 data to a53 caption data in ffmpeg.

  • Invalid data when processing input ogg in ffmpeg

    23 mars 2023, par Albert Gomáriz Sancha

    I am getting an ogg file and I am trying to convert it to a mopo3 file using fluent-ffmpef node library. When trying to convert it, then this error is shown :** An error occurred : Error : ffmpeg exited with code 1 : pipe:0 : Invalid data found when processing input**.

    


    Can someone help me please ?

    


    This is my code :

    


     const input = createReadStream(getPath("temp.ogg"));
  // console.log(input);
  // ffmpeg.setFfmpegPath(ffmpegPath);

  // const output = createWriteStream(getPath("temp.mp3"));
  // spawn(`ffmpeg -i ${getPath("temp.ogg")} ${getPath("temp.mp3")}`);
  ffmpeg(input)
    .setFfmpegPath(ffmpegPath)
    .toFormat("wav")
    .on("data", (data) => {})
    .on("error", (err) => {
      console.log("An error occurred: " + err);
    })
    .on("progress", (progress) => {
      // console.log(JSON.stringify(progress));
      console.log("Processing: " + progress.targetSize + " KB converted");
    })
    .on("end", () => {
      console.log("Processing finished !");
    })
    .save(getPath("temp.mp3")); //path where you want to save your file


    


  • How to decode the video stream of an mp4 file and save the decoded images to local directory in NodeJs

    8 août 2018, par Rohit Verma

    How to decode the video stream of an mp4 file and save the decoded images to local directory in NodeJs. I have tried ffmpeg and fluent ffmpeg but didn’t get clear idea how to use,As I was getting error while using fluent ffmpeg

    Code snippet :

       const ffmpeg = require('fluent-ffmpeg')
       const probe = require('ffmpeg-probe')

    const info = await probe('input.mp4')

    and in case of ffmpeg I have tried this,

    var ffmpeg = require('ffmpeg');

    try {
       var process = new ffmpeg("VID_20160805_121411556.mp4");
       process.then(function (video) {
           // Callback mode
           video.fnExtractFrameToJPG('C:/Users/PcName/Documents', {
               frame_rate : 1,
               number : 5,
               file_name : 'my_frame_%t_%s'
           }, function (error, files) {
               if (!error)
                   console.log('Frames: ' + files);
           });
       }, function (err) {
           console.log('Error: ' + err);
       });
    } catch (e) {
       console.log(e.code);
       console.log(e.msg);
    }

    Nothing is working and I didn’t get any clue how to do so.