Movie file download progress.

Dear TouchDesigner Community.
Assume i`m playing video file from the internet.
barakooda.com/wp-content/uploads … /Dune2.mp4

There is easy way
to show the download progress ?

Thank you.
Barak.

there is way to run in other python thread ( in parallel ) ( in the same instance of touch)
some download file script like this one ?

[code]import urllib.request

print(‘Beginning file download with urllib2…’)

url = ‘http://barakooda.com/wp-content/uploads/2018/02/Dune2.mp4
urllib.request.urlretrieve(url, ‘Dune2.mp4’)

print(‘finish file download with urllib…’)[/code]