How to get media objects

Have you tried to use get_children() function?

Edit:

All media attached to any post is treated as children of it. The function wp_get_attachment_image() will only return images.

With the function get_children() you’ll be able to get all the media, images or anything else.

In the above link, you can find some examples.