Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

Sur d’autres sites (9023)

  • pyinstaller and moviepy, ffmpeg works from terminal but not from finder

    12 novembre 2014, par Todd

    I am packaging python using pyinstaller 2.1 on OSX Mavericks. I have done this successfully in the past, but this is my first package that uses moviepy and ffmpeg. I use the following import :

    from moviepy.video.io import ffmpeg_reader

    Without this line in the code, everything works fine and I can launch my final package from its icon in finder. With the moviepy import, it will work if I launch from the terminal like this :

    open ./myapp.app

    but it will not open if I click on the icon from finder (opens quickly and crashes). I am assuming this has something to do with paths or environment variables that are set in terminal, but are not transferred to my packaged app. I have tried various hidden imports in pyinstaller for moviepy and its dependencies, but nothing seems to work. —debug mode hasn’t provided much info to track it down. Any other ideas ?

    Thanks !

  • exec(ffmpeg) is not executing in php but will in terminal ?

    14 août 2017, par D. Henry

    i have a website that allows users to upload videos and I have VPS server with ffmpeg installed, safe mode is off and have tested command in my terminal and it works however in php script when i try and run the command in exec() or even shell_exec() it does not execute. below is my code (changed some variables for privacy).

    $video_name = $_FILES["post_vid"]["name"];
    $Vurl = "/folder1/folder2/$vrand_file_name/$video_name";
    $VnewName = $vrand_vid_name .".mp4";
    $VurlNew = "/folder1/folder2/$vrand_file_name/$VnewName";
    $convertold = "/home/user/directory/domain.com/$Vurl";
    $convertNew = "/home/user/directory/domain.com/$VurlNew" ;
    $ffmpegC = "/user/local/bin/ffmpeg";
    exec($ffmpegC.' -y -i "'.$convertold.'" -f mp4 "'.$convertNew.'"');

    I have the code just after a move_uploaded_file() which runs fine.
    also checked and my php is using the same user as my terminal...
    any insight to this would be fantastic, thanks in advance.

  • a script for mac os terminal with user input

    10 décembre 2022, par Raghav

    I want to save m3u8 file from website to my local machine. For this I got the command as follows :
ffmpeg -i x -codec copy y.mkv
where x is the url of m3u8 playlist and y is name of output file
Is there a way I can automate the process of generating and executing this command using some program so that I can just enter the url of m3u8 file and name of output file and then automatically a command is generate and executed in macos terminal
Can someone please help ?

    


    I have created a file with .command which can be used to execute commands in mac os but I dont know how can I use it to create a variable command with different url and different name of file