This notebook will show you how to use the audio/video plugins in your tools to display audio and video files in your results
First, be sure to install crosscompute-audio
and crosscompute-video
via pip
pip install -U crosscompute-audio crosscompute-video
next all you have to do is reference the audio or video file in your print statement using the following suffixes respectively
mp3_url = 'http://soundbible.com/mp3/Kid_Laugh-Mike_Koenig-1673908713.mp3'
target_folder = '.'
import urllib
from os.path import join
mp3_name = join(target_folder, 'funny.mp3')
urllib.urlretrieve(mp3_url, mp3_name)
print('hilarious_audio_path = %s' % mp3_name)