https://github.com/interlab/elk-html5-video-audio-bbc
https://github.com/interlab/elk-html5-video-audio-bbc
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/interlab/elk-html5-video-audio-bbc
- Owner: interlab
- License: mit
- Created: 2016-08-21T15:51:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-05-23T16:35:12.000Z (about 4 years ago)
- Last Synced: 2025-01-28T05:15:00.196Z (over 1 year ago)
- Language: PHP
- Size: 226 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTML5 video and audio bbcode support for ElkArte
## Examples
### Audio
```
[html5audio]http://your-url.mp3[/html5audio]
[html5audio]http://your-url.ogg[/html5audio]
[html5audio]http://your-url.wav[/html5audio]
```
### Video
```
[html5video]http://your-url.mp4[/html5video]
[html5video]http://your-url.webm[/html5video]
[html5video]http://your-url.ogv[/html5video]
```
## ElkArte site
[Support and comments for this mod](http://www.elkarte.net/community/index.php?topic=3976.0)
## License
MIT
## Icons license
icons by Nick Roach http://www.elegantthemes.com/ License: GPL
## Problems
if no effect and your server is apache, add this code to your .htaccess file:
```
# Multimedia MIME types
AddType audio/mpeg .mp3
AddType audio/ogg .ogg
AddType audio/wav .wav
AddType video/mp4 .mp4
AddType video/webm .webm
AddType video/ogg .ogv
```