Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (96)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (7199)

  • Unable to load FFMpeg in file in laravel project

    14 février 2024, par Hatim Ahmad

    i'm trying to convert a varity of audio files into a specific audio type of my chossing on my laravel project.
on my search i landed on a package called Laravel FFMpeg, i started with a fresh installation with laravel 6.2, and did the installation as it shows on github, as soon as i started using it i had this error :

    


    


    FFMpeg\Exception\ExecutableNotFoundException : Unable to load FFMpeg in file C :\Users\Hatim\Desktop\Projects\Audio\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Driver\FFMpegDriver.php on line 55
#0 C :\Users\Hatim\Desktop\Projects\Audio\vendor\pbmedia\laravel-ffmpeg\src\Support\ServiceProvider.php(61) : FFMpeg\Driver\FFMpegDriver::create(Object(Illuminate\Log\LogManager), Object(Alchemy\BinaryDriver\Configuration))

    


    


    I'm currently just working with a simple thing :

    


    FFMpeg::fromDisk('s3');


    


    and yes I have called it my Controller : use ProtoneMedia\LaravelFFMpeg\Support\FFMpeg;

    


    I have also tried to install the PHP-FFMpeg Package and also tried to install FFmpeg on my device and link it using the path in my config\laravel-FFmpeg

    


    This is how it looks now without any modification, I went to my .env folder but it has nothing regarding FFmpeg so it takes the default value, that's why I tried installing it on my device and replacing the default value with the path of the FFmpeg on my device.

    


    return [
'ffmpeg' => [
    'binaries' => env('FFMPEG_BINARIES', 'ffmpeg'),
    'threads'  => 12,
],

'ffprobe' => [
    'binaries' => env('FFPROBE_BINARIES', 'ffprobe'),
],

'timeout' => 3600,
'enable_logging' => true


    


    ] ;

    


    I'm currently working on my local environment, but this has to work on a server.

    


  • Merge commit ’d6c2c2796d8885e99fc90793cdd7937826f82fab’

    9 juillet 2016, par Clément Bœsch
    Merge commit ’d6c2c2796d8885e99fc90793cdd7937826f82fab’
    

    * commit ’d6c2c2796d8885e99fc90793cdd7937826f82fab’ :
    LICENSE : Fix silly typo

    This commit is a noop, the typo disappeared when the whole paragraph was
    reworked in 484aec4da3f729fca9d9f84a6b895a8f882554db.

    Merged-by : Clément Bœsch <u@pkh.me>

  • Electron, Chromium and ffmpeg licencing confusion [closed]

    12 mars 2021, par Iamisti

    Intro :&#xA;Recently I'm working on an electron based application that is free to use but also has subscription based services.&#xA;It came to my attention that ffmpeg is shipped with electron, which has GPL/LGPL licence.

    &#xA;

    My quetion is :

    &#xA;

      &#xA;
    • Am I legally able to still distribute the application and be licence-compliant with ffmpeg without owning any proper licence to it ? I thought chromium dealt with the licencing on this topic since so many applications nowadays are shipped with using electron and chromium under the hood.
    • &#xA;

    • How do I compile/build electron to make it licence compatible (in case its not ?)
    • &#xA;

    &#xA;

    I did a lot of reseearch and I found out the followings :

    &#xA;

      &#xA;
    • ffmpeg is shipped with chromium, they built their own version of ffmpeg and it seems they also have licence for it. Although that might be that they just push the responsibility down on the software developer/company who distributes their application with chromium.&#xA;Chromium licence for ffmpeg : https://chromium.googlesource.com/chromium/third_party/ffmpeg/+/703e920bb75053bf6b87d41d198cbbfbce3fb7ad/LICENSE

      &#xA;

    • &#xA;

    • Apparently ffmpeg has a checklist of how to be licence compliant. Does that mean if I do all these steps, I can still distribute the application and can legally use it ? Licence checklist for ffmpeg : http://ffmpeg.org/legal.html

      &#xA;

    • &#xA;

    • checking out some popular electron applications like Discord, Figma, Slack, etc... they ALL have ffmpeg included cause of electron when you install them. I wonder how they made it legal ? I don't see any of these checklists done on any of these popular applications.

      &#xA;

    • &#xA;

    &#xA;

    I'm know very little regarding licences, so any help would be incredibly huge help for me.

    &#xA;