I am trying to load a video in the flowplayer in my asp.net mvc app, using this documentation: http://flash.flowplayer.org/documentation/installation/
my page looks like this:
<script src="~/Scripts/flowplayer-3.2.12.min.js"></script>
<div id="flvContent" style="width: 80%; height: 300px;"></div>
<script>
flowplayer("flvContent", "~/flowplayer.controls-3.2.15.swf", "sample_mpeg4.mp4");
</script>
how can I get this working?