Actions
Patch #22112
closedadd html5 audio controls if attachment is mp3
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Attachments
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Description
I added a simple line on bottom of application.js to create a HTML5 control if the attachment is an mp3.
i share it with you.
$(document).ready(function(){
$(".attachments p:has(a[href$='.mp3'])").after(function () {
return "<audio controls><source src=\"" +
$(this).find(" a[href$='.mp3'] ").attr("href")+"\" type=\"audio/mpeg\"</audio>"
});
});
Files
Related issues
Updated by diamond2nv GitHub almost 8 years ago
- File application.zip application.zip added
Thank for Toshi MARUYAMA having added a simple line on bottom of application.js to create a HTML5 control if the attachment is an mp3.
Add little change for both <video>(.mp4) and <audio>(.mp3) support, just refresh your browser and see after the new js!
$(document).ready(function(){
$(".attachments p:has(a[href$='.mp3'])").after(function () {
return "<audio controls><source src=\"" +
$(this).find(" a[href$='.mp3'] ").attr("href")+"\" type=\"audio/mp3\"</audio>"
});
});
$(document).ready(function(){
$(".attachments p:has(a[href$='.mp4'])").after(function () {
return "<video width=\"600\" height=\"400\" controls><source src=\"" +
$(this).find(" a[href$='.mp4'] ").attr("href")+"\" type=\"video/mp4\"</video>"
});
});
Updated by diamond2nv GitHub almost 8 years ago
return "<video width=\"600\" height=\"400\" controls><source src=\"" +
640*360?
Not fit for android browser
Updated by Toshi MARUYAMA over 7 years ago
- Related to Feature #10138: Video Player added
Updated by Go MAEDA about 7 years ago
- Related to Patch #27336: Render previews for audio and video files added
Updated by Go MAEDA about 6 years ago
- Status changed from New to Closed
The upcoming Redmine 4.0 will have audio/video control on the preview page. Please refer to #27336 for details.
Actions