How to remove the embed_footer?

The comments button and the share button are generated in two separate default actions, so you have to remove them both:

remove_action( 'embed_content_meta', 'print_embed_comments_button' );
remove_action( 'embed_content_meta', 'print_embed_sharing_button' );

Leave a Comment