';
+
+ html += 'Container: ' + (profile.Container || 'All') + '
';
+
+ if (profile.Type == 'Video') {
+ html += 'Video Codec: ' + (profile.VideoCodec || 'All') + '
';
+ html += 'Audio Codec: ' + (profile.AudioCodec || 'All') + '
';
+ }
+
+ else if (profile.Type == 'Audio') {
+ html += 'Codec: ' + (profile.AudioCodec || 'All') + '
';
+ }
+
+ if (profile.Conditions && profile.Conditions.length) {
+
+ html += 'Conditions: ';
+ html += profile.Conditions.map(function (c) {
+ return c.Property;
+ }).join(', ');
+ html += '
';
+ }
+
+ html += '';
+
+ html += '