If you’re having this error Class ‘Pbmedia\LaravelFFMpeg\FFMpegServiceProvider’ not found, then here is a Fixed for you to try. It is important to note that, there are a number of things that could lead to this error in your code. The catch we have specified here is the major reason to hit this error.
What does the error mean?
Technically, your app cannot find the class you’re referring to in your code. In Maybe, you added a namespace to a class that no longer lives in that location or was never there. It could be a typo in your namespace or whatever place you’re trying to reference this class from. The point here is this class ‘Pbmedia\LaravelFFMpeg\FFMpegServiceProvider’ is not found and everything fails.
How to reproduce the error:
Particularly in my situation, I made an upgrade to the Laravel FFmpeg package, and the service provider class changed so I needed to update the class reference in the config/app providers section.
See Also: Learn OOP Javascript the Easy way
How to Fix Class ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider::class,
Go to config app.php and replace the service provider class reference with this
ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider::class
And then move to the aliases section and also replace with this
'FFMpeg' => ProtoneMedia\LaravelFFMpeg\Support\FFMpeg::class
If you’re reading this post like months from now, you should check the Laravel FFMpeg github page for latest updates.
See also: Artisan Commands not Working, No output returned.
Conclusion
As earlier stated, read the error message printed on your console carefully and trace down to where you’re referencing this class that is causing this bug. Then, replace it with the proper address to where the class lives.
- Fixed Class ‘Pbmedia\LaravelFFMpeg\FFMpegServiceProvider’ not found
- Learn OOP Javascript the Easy way
- Artisan Commands not Working, No output returned.
- Tips to become a good developer
- Can Cryptocurrency be staked On a Raspberry Pi?
- Turning a TikTok Sound into an an Android Ringtone or Alarm.
- Generating 2FA Codes with Google Authenticator on Windows 10
- The latest Xiaomi Charging Tech Permits charging of phones wirelessly!!!
- Email Sending – How to setup Mailgun for Laravel 8
- How to get iOS 14.4 on your iPhone
- How to Automatically Move Files From One Folder to Another on Windows