Which are the possible way to get an XML sitemap in drupal 8 for image and video?
these are the module which i have tried
Version 2.10 and above of Simple XML sitemap supports indexing of images entities. Don't forget to run /update.php after upgrading. After doing so, there will be a new setting 'include images' on entity type/bundle settings as well as on entity edit pages.
See this blog post for details.
Regarding videos, I think using hook_simple_sitemap_arbitrary_links_alter(&$arbitrary_links)
would not be enough, as the output of the XML would have to be changed to add the 'video' element. The plan is to make generating of XML more pluggable and extensible in 2.11. Feel free to help out.