Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (50)

Sur d’autres sites (9112)

  • fragmented mp4 javascript converting

    7 juin 2013, par user816004

    I wanted to know if there is a way to convert regular mp4 to a fragmented mp4 via javascript. (like mp4box does) Is it efficient enough (not suppose to be a complicated task) ? did anyone write something like this ?
    to make it harder, can it be on the fly ? meaning I will not download the whole mp4 from the server but download in parts and convert it into fragments compatible with fragmented mp4 and mpeg-dash - I'm trying to overcome to problem to not have to use 2 different file types to play a video or do mp4box on all my library in advance.

    Regardless, is it possible to convert from h.264 compatible files with different containers (mov, flv etc.) to fragmented without a server ? meaning do it in the browser with javascript somehow ?

    appreciate the help,
    Yug

  • How to connect ffmpeg binaries with laravel on cpanel

    13 février 2020, par Manjeet Singh

    I am using laravel version 5.8,

    the root directory of my project on cpanel is home/user/public_html,
    the ffmpeg is installed on whm root server, (my cpanel account have full access to root)

    so how can I connect ffmpeg package with my laravel project in

  • how do I fix the permission problem so ffmpeg can write when run from a cgi-script ?

    7 juillet 2022, par NewtownGuy

    I have a shell script in Linux that runs ffmpeg for the purpose of converting video to a series snapshots in response to a command from apache2. The shell script is run from a perl script in /var/www/cgi-bin that is called by apache2. The conversion works fine when I run the shell script from the command line when I login as root. The problem is that ffmpeg cannot write its output when it's run from the cgi-script. With the exception of ffmpeg writing files, the shell script runs from the cgi-script just fine because I enabled it in /etc/sudoers and I run it with sudo. I have read several posts on the use of ffmpeg and setting permissions, and have tried the following without success :

    


      

    1. The full path to the snapshot files being written is given in the ffmpeg command

      


    2. 


    3. I tried placing the shell script that runs ffmpeg into a root folder instead of the same folder, /var/www/cgi-bin, as the perl cgi script

      


    4. 


    5. I gave the folder, /var/www/html/userName/video, where ffmpeg is to write its snapshots, www-data:root ownership instead of the original root:root, and I tried changing its write permission from 755 to 777.

      


    6. 


    7. ffmpeg is installed in the default location, /use/bin

      


    8. 


    


    How do I fix this ?

    


    Thank you in advance.