- Home
- Internet Scripts
- PHP language scripts
- YouTube Video Uploader 3.0
YouTube Video Uploader 3.0
By : viduploader3 Published on Thursday, March 24, 2016,06:18:23 in PHP language scripts
Description
Video Uploader 3.0 is a YouTube API-based PHP script that lets you add YouTube uploading functionality to your own website or web application. It allows your users to upload videos directly to your own YouTube Channel, without the need to sign in to YouTube or even have Google Account. The script uses the latest version (3.0) of YouTube Application Programming Interface (API) to upload videos and and set the video’s metadata (title, description, tags, status, and category).
While videos are being uploaded, progress bar show the current video upload
progress so your users don’t have to second guess how long uploading videos
is going to take. You can set video file size limit and video types with
ease to ensure your website is free from abuse.
To make this script work, you’ll need to create and authorize an app in
Google Developer Console at https://console.developers.google.com (very
easy, see instructions).You can integrate this script in any application
with minimum effort and without the need to use MySQL unless you need to
save user’s logs and info.
Features
- Upload videos directly from user’s browser to your YouTube channel without the need to worry about your account credentials.
- Uses the latest version (3.0) of YouTube Application Programming Interface (API) to upload videos and and set the video’s metadata.
- Many aspects of the script are fully customizable, allowing you the freedom to create an uploader that does exactly what you need it to. You need to add just two lines of code in your pages to integrate the video uploader.
- HTML5 file uploader for ultimate compatibility.
- Real-time uploading progress bar indicator, so users do not have to second guess how long uploading files is going to take.
- Set video size limits and video type limits with ease to PASS/GET video data. – Ease of workflow and usability for the application.
Video Uploader 3.0 has been designed to make implementation as easy as possible. Before purchasing or implementing, make sure you meet the minimum requirements:
- A server capable of parsing PHP (5.2.0 or higher).
- jQuery 1.4.x or greater.
- Any HTML5 compatible browser (e.g., Chrome, FireFox, MS Edge, etc.)
// in the head section of your page
<?php include (“uploader_head.php”); ?>
// in the body of your page and where you need to show the upload form
<?php include(“uploader_form.php”); ?>
GET options and destination page
Many video data are found in viduploader3/upload_to_youtube/processing.php and can be processed for saving or passing to other pages:
$title=$_GET[“title”];
$desc=$_GET[“desc”];
$tags=$_GET[“tags”];
$status=$_GET[“status”];
$cat=$_GET[“cat”]; Documents
Quick Start Guide
Advanced Setup Guide Credits and Resources YouTube Data API Reference
Google APIs Client Library for PHP
PHP Server-Side YouTube V3 OAuth API Video Upload Guide (Special thanks to Dom Sammut)