How do I express the dimensions of a video in width x height x depth?

How do I express the dimensions of a video in width x height x depth? Just like Opus shows.

I'm using dlg.Control("vid_dimensiones").label = item.metadata.video.picsize || "";
But the result is like this 1030792151392

I thought it was a concatenation of data, which could be extracted manually, but no, thanks.

Try item.metadata.video_text.picsize.

1 Like

Perfect @lxp, thank you very much!