kri55h/redditsaver

Reddit post saver

1.0.1 2023-12-24 08:59 UTC

This package is auto-updated.

Last update: 2024-09-24 10:49:59 UTC


README

Reddit Saver

Packagist Version Latest Version Packagist Downloads PHP Version License

Installation

To install this package, follow these steps:

composer require kri55h/redditsaver

Usage

Here's an example demonstrating how to use the RedditSaver class from this package:

use kri55h\redditsaver\RedditSaver;

try {
    $reddit = new RedditSaver();
    $reddit->setPostURL('<reddit_post_url>');
    $videoSaved = $reddit->saveVIDEO();

    if ($videoSaved) {
        // Video saved successfully
        return 'Video saved!';
    } else {
        // Handle if video saving failed
        return 'Failed to save video.';
    }
} catch (Exception $e) {
    // Handle any exceptions or errors that occurred during the process
    return 'An error occurred: ' . $e->getMessage();
}

Replace <reddit_post_url> with the actual URL of the Reddit post you want to save as a video.