File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -280,6 +280,13 @@ const VideoDetails: React.FC<VideoDetailsProps> = (props) => {
280
280
size = { 2 }
281
281
/>
282
282
< IconInfo text = { `Mux ID: \n${ displayInfo . id } ` } icon = { TagIcon } size = { 2 } />
283
+ { displayInfo ?. playbackId && (
284
+ < IconInfo
285
+ text = { `Playback ID: ${ displayInfo . playbackId } ` }
286
+ icon = { TagIcon }
287
+ size = { 2 }
288
+ />
289
+ ) }
283
290
</ Stack >
284
291
</ Stack >
285
292
</ TabPanel >
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export default function getVideoMetadata(doc: VideoAssetDocument) {
10
10
return {
11
11
title : doc . filename || id . slice ( 0 , 12 ) ,
12
12
id : id ,
13
+ playbackId : doc . playbackId ,
13
14
createdAt : date ,
14
15
duration : doc . data ?. duration ? formatSeconds ( doc . data ?. duration ) : undefined ,
15
16
aspect_ratio : doc . data ?. aspect_ratio ,
You can’t perform that action at this time.
0 commit comments