Missing streaming video key?
Missing streaming video key?
My favourite plane is Aerobask’s Diamond DA62. I have a (nearly) fully functioning cockpit for this plane. Recently, I have moved to Air Manager 5 and this seemed a good moment to have a look at video streaming.
The key “xpl/G1000_PFD_1”, however, produces a very ugly result. Apparently, the DA62 requires a different key to stream the proper G1000 layout. Is there any chance that this layout will become available in some near future?
For the time being, I will have to do with popouts and repositioning and resizing these every now and then. Not too bad, yet I am looking forward to have somewhat more stability in this respect.
Kindly Yours,
Han Schouten
The key “xpl/G1000_PFD_1”, however, produces a very ugly result. Apparently, the DA62 requires a different key to stream the proper G1000 layout. Is there any chance that this layout will become available in some near future?
For the time being, I will have to do with popouts and repositioning and resizing these every now and then. Not too bad, yet I am looking forward to have somewhat more stability in this respect.
Kindly Yours,
Han Schouten
Re: Missing streaming video key?
The DA62 synthetic vision G1000 is an extra plugin. You cannot stream this via AM. However, you can use the internal function - I think you just need to click on it and then pop it out as an extra window.
- Keith Baxter
- Posts: 4961
- Joined: Wed Dec 20, 2017 11:00 am
- Location: Gauteng
Re: Missing streaming video key?
Hi
I have not DA62 but I have the other Aerobask.
Try these.
NOTE: If the synthetic does not work then change the airframe to the STD 172 run it then change back to the DA62. It should then work.
Keith
I have not DA62 but I have the other Aerobask.
Try these.
NOTE: If the synthetic does not work then change the airframe to the STD 172 run it then change back to the DA62. It should then work.
Code: Select all
pfd_videostreem = video_stream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 1280, 1023, 768)
mfd_videostreem = video_stream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 512, 1023, 768)
Last edited by Keith Baxter on Mon Mar 24, 2025 8:50 am, edited 1 time in total.
AMD RYZEN 9 5950X CPU, Corsair H80I cooler, ASUS TUF GAMING B550-PLUS AMD Ryzen Mother Board, 32Gb ram Corsair Vengeance 3000Mh, MSI GTX960 4G graphics card
Re: Missing streaming video key?
It's already in the G1000 bezel as an option to choose from.
-
- Posts: 5903
- Joined: Thu Jul 27, 2017 12:22 am
Re: Missing streaming video key?
Small correction KeithKeith Baxter wrote: ↑Sun Mar 23, 2025 5:20 pm Hi
I have not DA62 but I have the other Aerobask.
Try these.
NOTE: If the synthetic does not work then change the airframe to the STD 172 run it then change back to the DA62. It should then work.
KeithCode: Select all
pfd_videostreem = videostream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 1280, 1023, 768) mfd_videostreem = videostream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 512, 1023, 768)
Code: Select all
pfd_videostream = video_stream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 1280, 1023, 768)
mfd_videostream = video_stream_add("xpl/gauges[1]",386, 98, 2048, 1536, 1538, 512, 1023, 768)
Code: Select all
pfd_videostream = video_stream_add("xpl/gauges[1]",0, 0, 1440, 1440, 1538, 1280, 1023, 1023)
and for the MFD
Code: Select all
mfd_videostream = video_stream_add("xpl/gauges[1]",0, 0, 1440, 1440, 1538, 500, 1023, 835)
Last edited by SimPassion on Sun Mar 23, 2025 7:08 pm, edited 3 times in total.
-
- Posts: 5903
- Joined: Thu Jul 27, 2017 12:22 am
Re: Missing streaming video key?
I learn something new every day 

Re: Missing streaming video key?
Yes indeed Aerobask don’t use the standard G1000 key. It’s not hard to locate the correct one though.
Air Manager panels at https://www.experimentalsimavionics.com
Youtube Channel https://www.youtube.com/channel/UC8ZqXX ... kfZMq5BKig
Air Manager API Tutorial Video Series https://youtube.com/playlist?list=PLNr0 ... baT4gJKg5D
Youtube Channel https://www.youtube.com/channel/UC8ZqXX ... kfZMq5BKig
Air Manager API Tutorial Video Series https://youtube.com/playlist?list=PLNr0 ... baT4gJKg5D
-
- Posts: 5903
- Joined: Thu Jul 27, 2017 12:22 am
Re: Missing streaming video key?
Yes
Code: Select all
elseif user_prop_get(display_pos) == "Aerobask DA62 PFD" then
vst_g1000 = video_stream_add("xpl/gauges[1]", 416, 100, 2048, 1536, 1538, 1280, 1023, 768)
elseif user_prop_get(display_pos) == "Aerobask DA62 MFD" then
vst_g1000 = video_stream_add("xpl/gauges[1]", 416, 100, 2048, 1536, 1538, 512, 1023, 768)