I am adding filter to add embed before post content, but don't want add to other places where called apply_filters("the_content").
So i need add embed before(after) post content without "the_content" filter hook.
add_filter('the_content', 'embed_on_post');
if you want to filter only a certain type or such, you can add your verification inside your filter function:
source: wordpress documentation