I'm trying to access video file using my system path but it's not working. However it's working fine if I put this file inside src\app\assets folder in my application. My html code are:
<video id="my_video_1" autoplay preload="metadata" loop controls *ngFor="let v of VideoById">
<source src="{{v.videopath}}" type="video/mp4">
</video>
I have to give in src like this src="D:\Video\video01.mp4", how is it possible
my project path are "C:\Projects\VideoStreamingApp" and my video file path are "D:\Video\video01.mp4"