FWIW, the original question seeks the ‘properties’ of ‘tracks’ of ‘movie file’, and thus requires a suitable file type (e.g. mp3 or mp4).
‘tracks’ generates a list — as some AV files have multiple tracks. Therefore, ‘properties of tracks of’ generates nested records. For an example mp3 file:
tell application "System Events" to properties of tracks of movie file aFile
--> {{visual characteristic:false, href:missing value, data size:10576718, duration:634603, modification time:date "Wednesday, April 14, 2021 at 20:22:45", high quality:false, kind:missing value, creation time:date "Wednesday, April 14, 2021 at 20:22:45", audio sample size:0, name:"Sound Track", type:missing value, data rate:0, audio characteristic:false, audio sample rate:0.0, enabled:true, class:track, video depth:0, dimensions:{0.0, 0.0}, start time:0, audio channel count:0, type class:missing value, data format:missing value}, {visual characteristic:false, href:missing value, data size:1, duration:905142, modification time:date "Wednesday, April 14, 2021 at 20:22:45", high quality:false, kind:missing value, creation time:date "Wednesday, April 14, 2021 at 20:22:45", audio sample size:0, name:"Base Track", type:missing value, data rate:0, audio characteristic:false, audio sample rate:0.0, enabled:true, class:track, video depth:0, dimensions:{0.0, 0.0}, start time:0, audio channel count:0, type class:missing value, data format:missing value}}
Notice that there are two records within the property result… one for each track (‘Sound Track’ and ‘Base Track’ in this example), and typically, but not always, ‘Sound Track’ is the name of the audio. Therefore, at least one extra step is required to get the relevant record.
Now, with that all said — based on your example, when I attempt to paste the clipboard into anything (even Script Editor), it fails with a beep. I don’t think that any applications understand this specialized pasteboard type (excepting the getting and setting of it in a script editor). So to use it in any other manner requires that it first be coerced into something intelligible (e.g. Record > List > Text). At least, I am unaware of how else to approach this.