How to display video with rasa x

wonder know how to display video with rasa-x, not in webchat thanks

@hurun Hello and welcome to the forum!

Can you please try these code:

sending response from domain.yml

responses:
  utter_greet:
  - text: "Check this video"
    attachment: { "type":"video", "payload":{ "src": "https://youtu.be/PfYBXidENlg" } }

sending response from custom actions actions.py

msg = { "type": "video", "payload": { "title": "Link name", "src": "https://youtu.be/PfYBXidENlg" } }

dispatcher.utter_message(text="Check this video",attachment=msg)