diff --git a/data/interfaces/default/current_activity_instance.html b/data/interfaces/default/current_activity_instance.html
index bf1fce7a..2627aab9 100644
--- a/data/interfaces/default/current_activity_instance.html
+++ b/data/interfaces/default/current_activity_instance.html
@@ -140,13 +140,14 @@ DOCUMENTATION :: END
% if data['video_decision'] == 'transcode' or data['audio_decision'] == 'transcode':
+ Stream Transcode
% if data['transcode_hardware'] == '1':
- Stream Transcode (HW) (Speed: ${data['transcode_speed']})
- % else:
- Stream Transcode (Speed: ${data['transcode_speed']})
+ (HW)
% endif
% if data['transcode_throttled'] == '1':
(Throttled)
+ % else:
+ (Speed: ${data['transcode_speed']})
% endif
% elif data['video_decision'] == 'copy' or data['audio_decision'] == 'copy':
diff --git a/data/interfaces/default/index.html b/data/interfaces/default/index.html
index 941f7516..982a8ca8 100644
--- a/data/interfaces/default/index.html
+++ b/data/interfaces/default/index.html
@@ -284,9 +284,9 @@
// if transcoding, update the transcode state
var ts = '';
if (s.video_decision == 'transcode' || s.audio_decision == 'transcode') {
- var throttled = (s.throttled == '1') ? ' (Throttled)' : '';
+ var throttled = (s.throttled == '1') ? ' (Throttled)' : ' (Speed: ' + s.transcode_speed + ')';
var hw = (s.transcode_hardware == '1') ? ' (HW)' : '';
- ts += 'Stream Transcode' + hw + ' (Speed: ' + s.transcode_speed + ')' + throttled + '
';
+ ts += 'Stream Transcode' + hw + throttled + '
';
} else if (s.video_decision == 'copy' || s.audio_decision == 'copy') {
ts += 'Stream Direct Stream
';
} else {