Recherche avancée

Médias (91)

Autres articles (8)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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 (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (2196)

  • Invalid data error during ffmpeg .m4a conversion

    4 janvier 2023, par Kazi bácsi

    I wanted to edit my .m4a voice recording from Samsung Voice Recorder using ffmpeg 2.2.2, however, I got the error Invalid data found when processing input. I tried to open it through Audacity, but it returned an error claiming that the ffmpeg library is missing, which is definitely not the case. Eventually I tried to use online .m4a to .mp3 converters, but they all returned error, so I assume there may be an issue with the encoding of the original file and ffmpeg should be configured accordingly. What settings shall I use ? (The original file can be played on the phone without any problem.)

    


    ffmpeg -ss 00:00:19 -i "C:\Your\Folder\original.m4a" edited.m4a


    


  • ENOENT error when trying to access output with ffmpeg + node.js

    29 juin 2020, par John Grayson

    I am running ffmpeg in a lambda function to do some video processing. My problem is the processed video is not being outputted/saved. Therefore, when I try to access the processed video, I get the error :

    


    ERROR  Error retrieving video to upload [Error: ENOENT: no such file or directory

    


    Relevant parts of my code :

    


    const { spawnSync } = require("child_process");

exports.handler = async (event, context) => {
  spawnSync(
    "/opt/ffmpeg/ffmpeg",
    [
      "-i",
      `/tmp/myfile`,
      'title="Test 123"',
      `/tmp/processed_file`,
    ],
    { stdio: "inherit" }
  );
}



    


    The conversion file itself does not return any errors, but when I try to access processed_file, I get the ENOENT error. I also used an fs.readdir to see what files actually exist in /tmp and the only file there was myfile. Therefore, my processed video truly did not save correctly.

    


    Does anyone know what I might be doing wrong here ? Thanks !

    


  • ffmpeg : do not report EOF on filters as an error.

    23 avril 2017, par Nicolas George
    ffmpeg : do not report EOF on filters as an error.
    

    Also print the error message in case of real error.

    • [DH] ffmpeg.c