This plugin imports the audio from Youtube videos.
Once deployed, the Youtube Importer can be used with the handle youtube-file-importer
.
from steamship import File, Steamship
IMPORTER_HANDLE = "youtube-file-importer"
ship = Steamship()
plugin_instance = ship.use_plugin(
plugin_handle=IMPORTER_HANDLE
)
file_creation_task = File.create_with_plugin(ship, plugin_instance=plugin_instance.handle, URL="YOUR_URL")
file_creation_task.wait()
audio_bytes = file_creation_task.output.raw()
Development instructions are located in DEVELOPING.md
Testing instructions are located in TESTING.md
Deployment instructions are located in DEPLOYING.md