Get attached videos for a page in WordPress

How do I retrieve a PHP object for a video that I added to a page in wordpress.

$images = get_attached_media('image', $post->ID);
//returns all images I uploaded in the editor

This works fine for images but won’t work for videos

$videos = get_attached_media('video', $post->ID);
//returns an empty array

Related posts