YouTube Video Downloader
by apilabs
Fast, Cheap and Unlimited download any video and audio in high quality from Youtube.
Opens on Apify.com
About YouTube Video Downloader
Fast, Cheap and Unlimited download any video and audio in high quality from Youtube.
What does this actor do?
YouTube Video Downloader is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.
Key Features
- Cloud-based execution - no local setup required
- Scalable infrastructure for large-scale operations
- API access for integration with your applications
- Built-in proxy rotation and anti-blocking measures
- Scheduled runs and webhooks for automation
How to Use
- Click "Try This Actor" to open it on Apify
- Create a free Apify account if you don't have one
- Configure the input parameters as needed
- Run the actor and download your results
Documentation
YouTube Video Downloader API ## Overview The YouTube Video Downloader API provides a powerful and flexible solution for downloading Music from YouTube. With support for multiple formats like MP3 and MP4, users can choose their desired quality option for the best media experience. This all-in-one downloader is perfect for developers looking to integrate seamless media downloading capabilities into their applications. ## Features - Download Video: Fetch and store high-quality videos from YouTube. - Download Audio: Extract and save audio tracks in various formats, including MP3. - Format Options: Choose between MP3 and MP4 formats for your downloads. ## Important Notes 1. Proxy Usage: If you are using a proxy, please ensure that it is correctly configured and you are using a reliable proxy group. This will help avoid IP blocking by YouTube. 2. QuickTime Note for Mac Users: If you are using macOS, the downloaded video may not work properly with QuickTime Player due to codec issues. In such cases, use a different media player like VLC, or convert the file format using a tool like FFmpeg. 3. Video and Link Storage: Every time the API runs: - The video download link is stored in one dataset. - The actual video is stored in another dataset, enabling easy access and management of the media files. ## Input Parameters The API accepts the following input parameters: - url: The URL of the YouTube video or audio content to download. - onlyAudio: A boolean flag (true/false) indicating whether to download audio only. - useFFmpeg: A boolean flag (true/false) to specify if FFmpeg should be used for processing. - proxy: (Optional) The proxy URL to be used for the download. Note: Using a proxy is recommended to avoid being blocked by TikTok. However, it may increase download times. If you experience any issues, consider changing your proxy. ## Output Upon a successful request, the API stores an item in the dataset the following format: json { "download_link": "your_download_link_here", "status_code": 200 } ## Usage Example Python The following example shows an full example of usage from running an actor to downloading the video on your device. python import requests import mimetypes from apify_client import ApifyClient # Initialize the ApifyClient with an API token # (You can generate your own Apify API token for authentication) apify_client = ApifyClient('your_apify_api_token') # Define the input for the actor that downloads TikTok videos actor_input = { "audioOnly": False, # Set to True if you only want to download audio, False for full video "ffmpeg": True, # Whether to use ffmpeg for processing "proxy": { "useApifyProxy": True, # Enable the use of Apify Proxy "apifyProxyGroups": ["RESIDENTIAL"], # Specify the proxy group to use (e.g., residential) "apifyProxyCountry": "HR" # Set the country code for the proxy (e.g., HR for Croatia) }, "url": "TikTok_url" # The TikTok URL to download } # Start the actor on Apify and wait for it to finish # (Replace 'demolitore/my-actor' with the actor you want to use) actor_call = apify_client.actor('apilabs/youtube-video-downloader').call(run_input=actor_input) # Retrieve the dataset associated with the TikTok downloader my_dataset_client = apify_client.dataset('your_username/YouTube-Video-Downloader') # Fetch the most recent dataset entry, which contains the download link l = my_dataset_client.list_items(limit=1, desc=True) #Get the only last element inserted url = l.items[0]['download_link'] # Extract the download link from the dataset # Download the file using the URL extracted from the dataset response = requests.get(url) # If the download is successful (status code 200), proceed to save the file if response.status_code == 200: # Get the Content-Type from the response headers to infer the file extension content_type = response.headers.get('Content-Type') # Guess the appropriate file extension based on the Content-Type extension = mimetypes.guess_extension(content_type.split(';')[0]) # Extract the base filename from the URL and append the correct file extension filename = url.split("/")[-1].split("?")[0] filename = f"{filename}{extension}" # Combine the base filename with the extension # Save the file to the local disk in binary mode with open(filename, 'wb') as file: file.write(response.content) # Print success message with the saved filename print(f"File downloaded successfully as {filename}.") else: # Print an error message if the download fails print(f"Failed to download file. Status code: {response.status_code}")
Categories
Common Use Cases
Market Research
Gather competitive intelligence and market data
Lead Generation
Extract contact information for sales outreach
Price Monitoring
Track competitor pricing and product changes
Content Aggregation
Collect and organize content from multiple sources
Ready to Get Started?
Try YouTube Video Downloader now on Apify. Free tier available with no credit card required.
Start Free TrialActor Information
- Developer
- apilabs
- Pricing
- Paid
- Total Runs
- 400
- Active Users
- 75
Related Actors
TikTok Scraper
by clockworks
TikTok Data Extractor
by clockworks
Fast TikTok API (free-watermark videos)
by novi
YouTube Scraper
by streamers
Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.
Learn more about ApifyNeed Professional Help?
Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.
Trusted by millions | Money-back guarantee | 24/7 Support