Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Vynchronize is a real-time online video synchronization platform. You can enjoy any video available online with friends who may not be next to you!

Vynchronize currently supports YouTube, Daily Motion, Vimeo, and essentially any .mp4/.webm on the internet with the HTML5 Player!
Vynchronize currently supports YouTube, Daily Motion, Vimeo, and essentially any .mp4/.webm on the internet with the HTML5 Player! In fact, when using Google Chrome, you can also play H.264-encoded .mkv's (experimental)!

[![forthebadge](https://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](http://forthebadge.com)

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ <h2> Join a Room! </h2>
<a class="dropdown-item" onclick="changePlayer(roomnum, 0)"><i class="fab fa-youtube"></i> YouTube</a>
<a class="dropdown-item" onclick="changePlayer(roomnum, 1)"><img width="14px" height="14px" src="img/dailymotion-logo.svg" alt="Daily Motion Logo"> Daily Motion</a>
<a class="dropdown-item" onclick="changePlayer(roomnum, 2)"><i class="fab fa-vimeo"></i> Vimeo</a>
<a class="dropdown-item" onclick="changePlayer(roomnum, 3)"><i class="fas fa-file-video"></i> HTML5 Player (.mp4/.webm) (Beta)</a>
<a class="dropdown-item" onclick="changePlayer(roomnum, 3)"><i class="fas fa-file-video"></i> HTML5 Player (.mp4/.webm/.mkv) (Beta)</a>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ socket.on('createHTML5', function(data) {
document.getElementById('nextButton').style.display = 'none'
document.getElementById('loveButton').style.display = 'none'
// document.getElementById('html5-input').style.display = 'block'
document.getElementById('inputVideoId').placeholder = 'Direct mp4/webm URL'
document.getElementById('inputVideoId').placeholder = 'Direct mp4/webm/mkv URL'
// document.getElementById('html5-message').style.display = 'block'

betaAlert()
Expand Down