Skip to content

Commit

Permalink
Re-organized playback tech location in source.
Browse files Browse the repository at this point in the history
  • Loading branch information
heff committed Aug 13, 2012
1 parent d71b085 commit 0edfae5
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 149 deletions.
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ cat src/tracks.js >> dist/video.js
# h5swf temporarily requires swfobject
# cat flash/swfobject.js >> dist/video.js

cat tech/html5/html5.js >> dist/video.js
cat tech/flash/flash.js >> dist/video.js

cat src/setup.js >> dist/video.js

cat src/_end.js >> dist/video.js


Expand Down
8 changes: 6 additions & 2 deletions dev.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@
<script src="src/controls.js"></script>
<script src="src/events.js"></script>
<script src="src/tracks.js"></script>

<script src="tech/html5/html5.js"></script>
<script src="tech/flash/flash.js"></script>

<script src="src/setup.js"></script>

<script type="text/javascript" charset="utf-8">
// Easy access to test Flash over HTML5. Add ?flash to URL
if (window.location.href.indexOf("?flash") !== -1) {
_V_.options.techOrder = ["H5swf"]
_V_.options.techOrder = ["flash"];
_V_.options.flash.swf = "tech/flash/video-js.swf";
}
</script>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions tech/flowplayer.js → tech/flowplayer/flowplayer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
147 changes: 0 additions & 147 deletions tech/youtube.js

This file was deleted.

File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions test/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
<script src='../src/player.js'></script>
<script src='../src/tech.js'></script>
<script src='../src/tracks.js'></script>

<script src='../tech/html5/html5.js'></script>
<script src='../tech/flash/flash.js'></script>


<script src='../src/setup.js'></script>
<!-- END Video.js Source Files -->

Expand Down

0 comments on commit 0edfae5

Please sign in to comment.