displaying subtitles for a video in a WPF MediaElement

前端 未结 2 1512
被撕碎了的回忆
被撕碎了的回忆 2020-12-20 10:56

I\'m working on a WPF application that displays video clips as part of the workflow. I\'m doing this by using MediaElement to play locally hosted (not streamed) AVI files.

2条回答
  •  旧巷少年郎
    2020-12-20 11:07

    In WPF you need to parse the subtitles file and synchronize, you don't have the event like MarkerReached in the Silverlight. But you can create a smi (SAMI-file) with the same filename as your video and put it in the same folder. Then subscribe to the ScriptCommand event and show the content in the overlay textblock.

提交回复
热议问题