youtube_validator 1.0.2
youtube_validator: ^1.0.2 copied to clipboard
This is a small package to validate the youtube video link and playlist link and we can also check the availability of video or playlist.
Video URL Validator validates URLs from Popular Video Platforms #
Platforms Supported
- Youtube
- Check url is valid video url.
- Check url is valid playlist url.
- Check url is availble on youtube or not.
- Check url is a youtube url or not.
Usage #
import 'package:youtube_video_validator/youtube_validator.dart';
void main() {
print(
'isValid: ${VideoURLValidator.validateYouTubeVideoURL(url: 'https://youtube.com/watch?v=23433')}');
print(
'Playlist/Video: ${VideoURLValidator.checkURLisVideoOrPlaylistYoutube(url: 'https://youtube.com/watch?v=23433')}');
print(
'Available: ${VideoURLValidator.checkVideoIsAvailOnYoutube(url: 'https://youtube.com/watch?v=23433')}');
}
Contributors #
Having Issues #
File the Issue here
Looking to contribute to this package: #
🤘🏻 Great! Fork the Repo, Update Code, Write a meaningful Commit Message, Send a PR. That's all you need to Contribute.