Even ChatGPT can't figure this out

I have a body of text from ‘ffprobe’ that contains this string: " Stream #0:1(und): Audio: aac LC (mp4a / 0x6134706D), 48000 Hz, stereo" (without the ") but I only want the string “Stream #0:1(und): Audio: aac LC”
I asked ChatGPT 3.5 and it came up with, after quite some time, a solution that sort of gave med what I wanted, but not the entire string. This is the comand: ffprobe ‘Trollgrottan i Lunsen.mp4’ 2>&1 | awk ‘/Stream.*Audio:/ { print $3, $4, $5, $6, $7 }’
But didn’t work.
Anyone with an idea?

PS I’m 68 yo and I have absolutely no wish to learn everything about shell programming, but I do need this code to work for me.

What do you need it for anyway ?

Well, I think I stated that I’m my question. I need to extract certain information from a larger body of text.

Doesn’t answer the question, as that part’s obvious.

Well, I’ve already gotten a solution in another forum, so this topic is rather “obsolete”.