Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (83)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (5034)

  • Unable to load FFProbe driver for FFmpeg

    12 septembre 2021, par Kapil Ropalekar

    Hi i am trying to install php-ffmpeg.
    Can someone guide me or correct me in my steps.

    



      

    1. I installed the composer on windows and then traversed to my folder i had created to run install ffmpeg cmd

    2. 


    3. After running this command a composer.json, composer.lock file were created along with a vendor folder.

    4. 


    5. Later installed the Shared FFMpeg build for 64bit from here

      



      


      http://ffmpeg.zeranoe.com/builds/

      


    6. 


    



    and form this folder copied the bin folder to my directory to set the ffmpeg and ffprobe path during create() like this

    



    $ffmpeg = \FFMpeg\FFMpeg::create([
    'ffmpeg.binaries'  => '/vendor/bin/ffmpeg.exe',
    'ffprobe.binaries' => '/vendor/bin/ffprobe.exe' 
]);


    



    Currently i am getting this error which says :

    



    "Fatal error: Uncaught exception 'Alchemy\BinaryDriver\Exception\ExecutableNotFoundException' with message 'Executable not found, proposed : /vendor/bin/' in D:\xampp\htdocs\health\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\AbstractBinary.php:160 Stack trace: #0 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php(48): Alchemy\BinaryDriver\AbstractBinary::load('/vendor/bin/', NULL, Object(Alchemy\BinaryDriver\Configuration)) #1 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php(207): FFMpeg\Driver\FFProbeDriver::create(Array, NULL) #2 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFMpeg.php(117): FFMpeg\FFProbe::create(Array, NULL, NULL) #3 D:\xampp\htdocs\health\ff.php(6): FFMpeg\FFMpeg::create(Array) #4 {main} Next exception 'FFMpeg\Exception\ExecutableNotFoundException' with message 'Unable to load FFProbe' in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php:50 Stack trace: #0 D:\xampp\htdocs\he in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php on line 50".


    



    So what could i have done wrong or am i missing any steps. Can someone point me to the right direction.

    


  • Unable to load FFProbe driver for FFmpeg

    4 février 2016, par Kapil Ropalekar

    Hi i am trying to install php-ffmpeg.
    Can someone guide me or correct me in my steps.

    1. I installed the composer on windows and then traversed to my folder i had created to run install ffmpeg cmd

    2. After running this command a composer.json, composer.lock file were created along with a vendor folder.

    3. Later installed the Shared FFMpeg build for 64bit from here

      http://ffmpeg.zeranoe.com/builds/

    and form this folder copied the bin folder to my directory to set the ffmpeg and ffprobe path during create() like this

    $ffmpeg = \FFMpeg\FFMpeg::create([
       'ffmpeg.binaries'  => '/vendor/bin/ffmpeg.exe',
       'ffprobe.binaries' => '/vendor/bin/ffprobe.exe'
    ]);

    Currently i am getting this error which says :

    "Fatal error: Uncaught exception 'Alchemy\BinaryDriver\Exception\ExecutableNotFoundException' with message 'Executable not found, proposed : /vendor/bin/' in D:\xampp\htdocs\health\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\AbstractBinary.php:160 Stack trace: #0 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php(48): Alchemy\BinaryDriver\AbstractBinary::load('/vendor/bin/', NULL, Object(Alchemy\BinaryDriver\Configuration)) #1 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFProbe.php(207): FFMpeg\Driver\FFProbeDriver::create(Array, NULL) #2 D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\FFMpeg.php(117): FFMpeg\FFProbe::create(Array, NULL, NULL) #3 D:\xampp\htdocs\health\ff.php(6): FFMpeg\FFMpeg::create(Array) #4 {main} Next exception 'FFMpeg\Exception\ExecutableNotFoundException' with message 'Unable to load FFProbe' in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php:50 Stack trace: #0 D:\xampp\htdocs\he in D:\xampp\htdocs\health\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFProbeDriver.php on line 50".

    So what could i have done wrong or am i missing any steps. Can someone point me to the right direction.

  • ffpmeg extracting frames produces too many images

    7 septembre 2019, par Abishur

    I’m using FFMpeg to extract some png files from a video using the following command :

    ffmpeg -i FILE.mp4 -vf "select=not(mod(n\,75))" -vsync vfr img_%03d.png

    the source video has a duration of 2898 seconds and a framerate of 25 FPS. This means I should be grabbing a picture every 3 seconds for 966 pictures.

    However, instead I’m getting 1158 pictures. After doing some math I’ve discovered that that is the within 2 pictures of what I would expect if I was grabbing the 75th frame from a 30 FPS video.

    I’ve tried -framerate=25 but it still produces the same amount of pictures. The video does have a variable framerate, however using ffprobe it says that the max FPS is 25.47. So even if it was at the max FPS the whole video then I’d still only expect to see 984 pictures.

    Is there anyway to tell FFMpeg that my source video is only 25 fps ? Or am I missing something obvious ?