How to activate or configure?
Its via an XML file at present and Vianney is looking at making it more user friendly in v4 .......
Hello Vianney / vlcboyer / G Coco and anyone that knows the variable names used in Video-Overlays.I have my cadence and Heart rate displaying on my video-overlay and I understand the format of the code.Can you assist me with identifying the proper variable names for: Elapsed Time and Distance.
Hi,
I’m glad to see that few people are using this feature!
I’ve not opened this code since several years however I’m sure that overlays feature should not be difficult to activate for other operating systems as I was mainly using QT library.
I was unable to test it on Linux due to drivers issues and have no OSX at all. Thus I didn’t activate this code as it was not tested.
Feel free to try by yourself it should really not be difficult.
Another development which is video/speed synchronization may be harder to make it working as, at that time I discovered some differences in VLC library depending on target architecture.
Best regards
Vianney
De : golden-che...@googlegroups.com [mailto:golden-che...@googlegroups.com] De la part de Ale Martinez (Please don't email or cc me)
Envoyé : mercredi 11 décembre 2019 13:29
À : golden-cheetah-users <golden-che...@googlegroups.com>
Objet : [Golden-Cheetah-Users] Re: Video Overlays in Train view
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "golden-cheetah-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/golden-cheetah-users/f8Sj9uuQZfU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/408afa8a-7f04-446b-b116-5d87ccf76028%40googlegroups.com.
To unsubscribe from this group and all its topics, send an email to golden-cheetah-users+unsub...@googlegroups.com.
Hi Peter,
I suppose that as a minimum I push it in the git repository but I cannot confirm if it was merged into the global project at that time.
If this is the case you just have to change the configuration file in order to add this widget wherever you want on the screen.
FYI here is the configuration file I have on my computer:
(you can see type=“elevation” at the end for this purpose)
<layout name="preset_1">
<meter name="Speedometer" container="Video" source="Speed" type="NeedleMeter">
<RelativeSize Width="15.0" Height="15.0" />
<RelativePosition X="12.0" Y="77.0" />
<Range Min="0.0" Max="60.0" />
<Angle>220.0</Angle>
<SubRange>6</SubRange>
<MainColor R="0" G="255" B="0" A="250" />
<BackgroundColor R="100" G="100" B="100" A="100" />
</meter>
<meter name="Speedometer-text" container="Speedometer" source="Speed" type="Text">
<RelativeSize Width="70.0" Height="40.0" />
<RelativePosition X="50.0" Y="75.0" />
<MainColor R="0" G="255" B="0" A="230" />
<MainFont Name="Consolas" Size="64" />
</meter>
<meter name="Wattmeter" container="Video" source="Watt" type="CircularMeter">
<RelativeSize Width="15.0" Height="13.0" />
<RelativePosition X="88.0" Y="73.0" />
<Range Min="0.0" Max="350.0" />
<Angle>280.0</Angle>
</meter>
<meter name="Wattmeter-text" container="Wattmeter" source="Watt" type="Text">
<RelativeSize Width="50.0" Height="40.0" />
<RelativePosition X="50.0" Y="50.0" />
<MainColor R="255" G="0" B="0" A="230" />
</meter>
<meter name="Wattmeter-unit" container="Wattmeter" source="None" type="Text">
<RelativeSize Width="50.0" Height="20.0" />
<RelativePosition X="50.0" Y="85.0" />
<MainColor R="255" G="0" B="0" A="230" />
<Text>Watts</Text>
</meter>
<meter name="Cadencemeter" container="Video" source="Cadence" type="CircularBargraph">
<RelativeSize Width="15.0" Height="15.0" />
<RelativePosition X="27.0" Y="77.0" />
<Range Min="0.0" Max="200.0" />
<MainColor R="5" G="0" B="255" A="180" />
<Angle>280.0</Angle>
<SubRange>30</SubRange>
</meter>
<meter name="Cadencemeter-text" container="Cadencemeter" source="Cadence" type="Text">
<RelativeSize Width="35.0" Height="27.0" />
<RelativePosition X="50.0" Y="50.0" />
<MainColor R="255" G="0" B="0" A="250" />
</meter>
<meter name="Cadencemeter-unit" container="Cadencemeter" source="None" type="Text">
<RelativeSize Width="50.0" Height="20.0" />
<RelativePosition X="50.0" Y="85.0" />
<MainColor R="255" G="0" B="0" A="250" />
<Text>rpm</Text>
</meter>
<meter name="HRM-text" container="Video" source="HRM" type="Text">
<RelativeSize Width="15.0" Height="5.0" />
<RelativePosition X="88.0" Y="90.0" />
<MainColor R="255" G="0" B="0" A="250" />
</meter>
<meter name="status" container="Video" source="TrainerStatus" type="Text">
<RelativeSize Width="15.0" Height="5.0" />
<RelativePosition X="10.0" Y="10.0" />
<BackgroundColor R="100" G="100" B="100" A="100" />
</meter>
<meter name="status" container="Video" source="TrainerStatusDetails" type="Text">
<RelativeSize Width="15.0" Height="4.0" />
<RelativePosition X="10.0" Y="15.0" />
<BackgroundColor R="100" G="100" B="100" A="100" />
</meter>
<meter name="elevation" container="Video" source="Elevation" type="Elevation">
<RelativeSize Width="47.0" Height="20.0" />
<RelativePosition X="57.0" Y="85.0" />
<BackgroundColor R="100" G="100" B="100" A="100" />
<OutlineColor R="255" G="255" B="255" A="250" />
<MainColor R="255" G="0" B="0" A="250" />
</meter>
<meter name="elapsed" container="Video" source="Duration" type="Text">
<RelativeSize Width="10.0" Height="5.0" />
<RelativePosition X="90.0" Y="3.0" />
</meter>
<meter name="distance" container="Video" source="Distance" type="Text">
<RelativeSize Width="10.0" Height="5.0" />
<RelativePosition X="90.0" Y="8.0" />
</meter>
<meter name="gradient" container="Video" source="Gradient" type="Text">
<RelativeSize Width="10.0" Height="5.0" />
<RelativePosition X="90.0" Y="13.0" />
</meter>
</layout>
Best regards
Vianney
De : golden-che...@googlegroups.com [mailto:golden-che...@googlegroups.com] De la part de Peter K
Envoyé : mercredi 11 décembre 2019 21:40
À : golden-cheetah-users <golden-che...@googlegroups.com>
Objet : Re: [Golden-Cheetah-Users] Re: Video Overlays in Train view
To unsubscribe from this group and all its topics, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/408afa8a-7f04-446b-b116-5d87ccf76028%40googlegroups.com.
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "golden-cheetah-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/golden-cheetah-users/f8Sj9uuQZfU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/c52ef8df-868d-4558-a939-553b1b56b641%40googlegroups.com.
Hi,
I’m glad to see that few people are using this feature!
I’ve not opened this code since several years however I’m sure that overlays feature should not be difficult to activate for other operating systems as I was mainly using QT library.
I was unable to test it on Linux due to drivers issues and have no OSX at all. Thus I didn’t activate this code as it was not tested.
Feel free to try by yourself it should really not be difficult.
To unsubscribe from this group and all its topics, send an email to golden-cheetah-users+unsub...@googlegroups.com.
Hi Ale,Are you planning to incorporate Vianney's widget and other variables in any of the future releases? I was reading the exchange between Mark and Vianney and i love the idea of the video as a background with transparent widgets. Hoping for an ETA since you mentioned that the changes seem easy :-)
Peter

Hi Ale,I was playing around with the current video-layout.xml and it seems that the heart rate field returns "bpm" as part of the value. Is there any way to remove it? I'm trying to setup as may of the fields as i can as "CircularBargraph".
Also any chance we can get a copy of the latest dev build?
El lunes, 30 de diciembre de 2019, 14:14:34 (UTC-3), Peter K escribió:Hi Ale,I was playing around with the current video-layout.xml and it seems that the heart rate field returns "bpm" as part of the value. Is there any way to remove it? I'm trying to setup as may of the fields as i can as "CircularBargraph".No, but since is a fixed string and for consistency we should remove it from the code and add it to the xml.
Hi Ale,I just realized that the speedometer has the same issue. It appears the "kph" is not in the xml file. Hopefully it is also easily fixed before the next release.
Cool, good to know that it works on a Mac.
On Friday, January 8, 2016 at 2:24:44 PM UTC-6, Kelvin Gyoerick wrote:Thank you, I had attempted this before but my mistake had been right-clicking and saving the file instead of copy pasting it's contents.
On Friday, January 8, 2016 at 10:25:39 AM UTC-6, Will wrote:It is on github in src / xml. If you Google "video-layout.xml goldencheetah" it is the top result.
Hi,I'm not sure if I got it right. Is it already working on MacOS?
Thx for the replay - i think, we are getting closer :-)I already added a videoplayer chart. But in the video chart i do only see the google maps, the elevation and the other metrics but not the selected video. I tried the same video in VLC direct and it was displayed perfectly.Now i tried with the debug command you gave me and i got an codec error:"core decoder error: Codec `h264' (H264 - MPEG-4 AVC (part 10)) is not supported."If i open the video in VLC, it is displayed with this codec. hm.Any idea why VLC is supporting the video codec directly but not integrated into GC?
How can i check the codes of the in GC included VLC?
Hi, i updated from 3.6DEV2009 (downloaded 5 days ago) to 3.6DEV2108 and now its working. :-)