Insert .MKV video in post - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Community Archive (https://community.mybb.com/forum-106.html) +--- Forum: Archived Forums (https://community.mybb.com/forum-143.html) +---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html) +----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html) +------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html) +------ Thread: Insert .MKV video in post (/thread-153782.html) |
Insert .MKV video in post - split - 2014-05-14 Mybb has some integrated video support for youtube, Vimeo, and a few others, but how can I post a video that is simply hosted on a generic file server? I have several .mkv video files hosted on the same server as the forum, and I want to be able to insert them in the post so they appear as a click-to-start video, rather than just a hyperlink RE: Insert .MKV video in post - wallet - 2014-05-15 upload them to youtube i suppose RE: Insert .MKV video in post - Vashnik - 2014-05-16 You'll need a video player that supports MKV files. FireDrive (formerly PutLocker) supports MKV files, so you could use them as your video host and video player (oh, and you don't even have to download anything to use it). It would then be a matter of making a Custom MyCode for the embedded HTML code. (Admin CP -> Configuration (tab) -> MyCode -> Add New MyCode) For Title, you can use whatever you like. For the example, I'll be using FireDrive. For Description, you can describe what it does. For Regular Expression: For Replacement:
The use would be: Where (.*?) is, you put the file's unique key (given to you by FireDrive after the file is uploaded) $1 is where the unique file key would go when the board interprets the MyCode.EDIT: And in case you still want to use your own server, you will need to find a flash video player that you can use that will support MKV files. Something I'm not experienced with, so someone with more experience will have to help you with setting up your own hosted video player. RE: Insert .MKV video in post - Cameron:D - 2014-05-16 I don't think any of the flash players will do MKV. From looking around, most solutions to playing MKV require embedding either VLC or DivX player on the page. That said, why is MKV necessary? MKV is generally just a wrapper around another stream (Such as h264/mp4), can the original mp4 file (Which will play natively on many browsers) not be used? RE: Insert .MKV video in post - Vashnik - 2014-05-16 (2014-05-16, 03:50 AM)Cameron:D Wrote: I don't think any of the flash players will do MKV. From looking around, most solutions to playing MKV require embedding either VLC or DivX player on the page.JWPlayer supports MKV files that is encoded in h.264. (see "play .mkv files" (<- click link), second post from the top) RE: Insert .MKV video in post - Cameron:D - 2014-05-16 Oh, so it does. Not sure why I didn't run into that earlier. |