Overview for 'pascalbaljetmedia'
Written by Pascal Baljet Media - Blog
/ Original link
on Dec. 22, 2020
The Laravel FFmpeg package has supported HLS for over four years. It's a fantastic protocol to provide on-demand, adaptive streaming. Initially developed by Apple in the early days of iOS, it is now the most popular streaming format, and it works on Android and virtually every other browser as well…
Written by Pascal Baljet Media - Blog
/ Original link
on Dec. 11, 2020
Last week I blogged about a new package that I wrote. It builds upon the magic of Laravel Eloquent, and it quickly gained attention. As I worked on a minor release with some enhancements and shortcuts, I got an idea for a new feature. It's closely related to last week's package, but I decided to wr…
Written by Pascal Baljet Media - Blog
/ Original link
on Dec. 2, 2020
In the Laravel framework, you've undoubtedly come across the Eloquent ORM. It makes working with your database a breeze as its query builder is both simple and incredibly powerful. It also has this concept of scopes, which you can apply globally to a model, or locally throughout your app. An exampl…
Written by Pascal Baljet Media - Blog
/ Original link
on Oct. 16, 2020
Today a new version of Laravel FFMpeg has been released: version 7.3. It now has support for watermark built-in! You can add watermarks from your local or remote storage or even from the web. Positioning is easy. You can position it in a CSS-way, or you can use the built-in position constants. Let'…
Written by Pascal Baljet Media - Blog
/ Original link
on Sep. 28, 2020
Laravel makes it easy to handle file uploads from a request that's multipart/form-data encoded. You can access uploaded files through a Request instance, and it has helper methods to store files easily. It also has a bunch of rules to validate incoming files. For example, you can verify that the in…
Written by Pascal Baljet Media - Blog
/ Original link
on Aug. 10, 2020
I've always been a big fan of the Bootstrap framework, from the first version on. It's a great way to rapidly build interfaces and prototypes. These days we've mostly moved away from it towards Tailwind CSS, but it's still a great framework. Adam Wathan, the creator of the Tailwind framework, had a…