Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (93)

Sur d’autres sites (16719)

  • Using ffmpeg with frei0r on windows 10. Can't find module from frei0r

    21 février 2023, par Denis

    I am trying to add a filter to my video using ffmpeg and frei0r filters on windows 10. ffmpeg.exe is located in the system32 folder. ffmpeg works fine on other tasks. As soon as I try to add the frei0r filter, I get an error :

    


    Could not find module 'glow'.
Error initializing filter 'frei0r' with args 'glow:20'


    


    I downloaded the frei0r dll files from the official site and placed them in the system32 folder, and then placed them in another folder. Additionally, I registered the path :

    


    set FREI0R_PATH=C:\WINDOWS\system32\frei0r-1


    


    In cmd I enter the following command :

    


    ffmpeg -loglevel debug -i 1.mp4 -vf "frei0r=glow:20" -t 10 1out.mp4


    


    help me

    


    I tried everything I saw online and nothing helped.

    


  • FFMPEG works from command line but not PHP

    23 janvier 2015, par nbs189

    I have a strange situation that has just happend. FFMPEG is no longer executing from PHP but will from the command line.

    Here is exactly what the command is :

    ffmpeg -i ../../uploads/ee78d5deb564901626067cc0008456ed.mp3 -ab 96k -y ../../uploads/mp3/ee78d5deb564901626067cc0008456ed_6203688.mp3

    How it is executed in the PHP script :

    if(! exec("ffmpeg -i ".$target_path."".$hash_filename.".".$path_extension." -ab 96k -y ".$target_path."mp3/".$hash_filename."_".$session_ID.".mp3")){
       echo 'ffmpeg failed';
    }

    This command did work but not longer does. I have recently updated plesk but I highly doubt that has affected this. The only thing that I think could affect it that I have recently done is have the file upload go to a subdomain. So the directory where the file is located and stored in the command is in a directory outside the document root. However, the move_uploaded_file function works and I have altered the open_basedir in PHP ini to the webspace root.

  • fftools/ffmpeg : move stream-dependent starttime correction to transcode_init()

    9 août 2022, par Anton Khirnov
    fftools/ffmpeg : move stream-dependent starttime correction to transcode_init()
    

    Currently this code is located in the discontinuity handling block,
    where it does not belong.

    • [DH] fftools/ffmpeg.c