Project

General

Profile

Actions

Patch #22112

closed

add html5 audio controls if attachment is mp3

Added by nicola mondinelli about 8 years ago. Updated over 5 years ago.

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

Related to Redmine - Feature #10138: Video PlayerClosed

Actions
Related to Redmine - Patch #27336: Render previews for audio and video filesClosedGo MAEDA

Actions
Actions #1

Updated by Toshi MARUYAMA about 8 years ago

  • Description updated (diff)
Actions #2

Updated by Toshi MARUYAMA about 8 years ago

  • Description updated (diff)
Actions #3

Updated by diamond2nv GitHub about 7 years ago

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>" 
  });
});
Actions #4

Updated by diamond2nv GitHub about 7 years ago

return "<video width=\"600\" height=\"400\" controls><source src=\"" +

640*360?

Not fit for android browser

Actions #5

Updated by Toshi MARUYAMA about 7 years ago

Actions #6

Updated by Go MAEDA over 6 years ago

  • Related to Patch #27336: Render previews for audio and video files added
Actions #7

Updated by Go MAEDA over 5 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

Also available in: Atom PDF