Download the PHP package ianfortier/loom-downloader without Composer
On this page you can find all versions of the php package ianfortier/loom-downloader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ianfortier/loom-downloader
More information about ianfortier/loom-downloader
Files in ianfortier/loom-downloader
Package loom-downloader
Short Description Loom Downloader is a simple PHP package to download videos from loom.com
License MIT
Homepage https://github.com/ianfortier/loom-downloader
Informations about the package loom-downloader
Loom Video Downloader
A simple PHP package to download Loom videos with ease.
๐ Installation
Install the package via Composer:
๐ค Why?
Loom doesn't provide an official API for video downloads. This package fills that gap, allowing you to:
- Create backups of your Loom videos
- Archive old content
- Have offline access to your videos
Use responsibly and only for videos you have the right to download and store.
๐ง Usage Examples
The LoomDownloader
class provides two main methods for working with Loom videos: downloadVideo
and saveVideo
.
Download Video Content
To download the video content and get it as a binary:
Save Video to File
To download the video and save it directly to a file:
If you don't specify a destination, the video will be saved to a temporary directory:
๐ Laravel Integration
While this package can be used in any PHP project, here are some examples of how you can integrate it with Laravel:
Basic Usage in a Controller
Error Handling with Laravel Logging
โน๏ธ Important Information
Before using this package, please be aware of the following:
-
Video Access: This package attempts to download Loom videos based on their ID. It does not implement authentication, so its ability to access private videos depends on Loom's API behavior. Use caution and respect video owners' privacy settings.
-
Error Handling: The package throws exceptions for invalid URLs, unavailable videos, or API errors. Make sure to handle these exceptions in your code.
-
Video Quality: Videos are downloaded in the format provided by Loom's API. There are no options to select different qualities or formats.
-
Large Videos: While the package can handle large files, be cautious when using the
downloadVideo
method as it loads the entire video into memory. For large videos, prefer thesaveVideo
method which streams the video directly to a file. - Legal and Ethical Considerations: Ensure you have the right to download and use the Loom videos. This package does not enforce access controls or address legal concerns related to video downloading. Always respect copyright and privacy rights.
๐งช Testing
Run the tests with:
๐ License
This package is open-source software licensed under the MIT license.
For more detailed information or to report issues, please visit our GitHub repository.