Remote Assets
Remote media assets for examples and tutorials. Thin catalog that exposes image/video samples from DeGirum's PySDK Examples as simple attributes and lists.
Last updated
Was this helpful?
Was this helpful?
Images (names):
['bikes', 'car', 'cat', 'fire_place', 'license_plate', 'living_room', 'mask1', 'parking_lot', 'three_persons', 'two_cats']
Videos (names):
['cars_lp', 'example_video', 'faces_and_gender', 'hand_palm', 'parking', 'person_face_hand', 'person_pose', 'store', 'store_short', 'traffic', 'traffic2', 'traffic_hd', 'walking_people', 'walking_people2', 'walking_person']from degirum_tools import remote_assets
# Access via attributes (preferred for readability)
cat_url = remote_assets.cat
walking_people_url = remote_assets.walking_people
print("cat:", cat_url)
print("walking_people:", walking_people_url)cat: https://raw.githubusercontent.com/DeGirum/PySDKExamples/main/images/Cat.jpg
walking_people: https://raw.githubusercontent.com/DeGirum/PySDKExamples/main/images/WalkingPeople.mp4from degirum_tools import remote_assets
cat = remote_assets.cat # RemoteMedia (string URL with helpers)
print(cat) # prints the URL
print(cat.kind) # "image"
print(cat.is_image) # True
print(cat.is_video) # False
vid = remote_assets.walking_people
print(vid.kind) # "video"https://raw.githubusercontent.com/DeGirum/PySDKExamples/main/images/Cat.jpg
image
True
False
video