lackis wrote: Thu Mar 25, 2021 11:49 am
I did enjoy playing this for a week, looking forward to each evening. The days were quite varied.
But I ran into one problem that made some days and especially the final day unplayable.
In many places video is played. In the code start and end time is defined but this did not work, so each page with a video played the full video from start to end. In the beginning I thought it was part of the game, to make the experience more frustrating, but after seeing the same 10 minute video for the 4th time I realized something was off.
Code: Select all
<Video id="video.mp4" target="Both45" start-at="3:16" stop-at="8:10" />
This happened on Windows with both version 3.8 and 4.3 of GuideMe.
Regarding the video start/stop issues:
According to Philo's
GuideMe coding Wiki, the Video AND Audio nodes require the
start-at and
stop-at attributes to use the [hh:mm:ss] format. Leading zeros are ignored, so [h:m:s] would also work. I think the critical part is the 3 fields separated by 2 colons for the parsing. I'm not sure if blanks instead of zeros would work [::20] vs [0:0:20].
I searched the tease files for "start-at=" and "stop-at=", and found that the Video nodes in Spritual Awakening use a [m:ss] format, which is invalid and so defaults to playing the whole video.
It
does work properly if you reformat the attributes to be [hh:mm:ss] or [h:m:s].
So, for your example:
Code: Select all
<Video id="Video.mp4" target="Both45" start-at="3:16" stop-at="8:10" />
needs to be changed to:
Code: Select all
<Video id="Video.mp4" target="Both45" start-at="0:3:16" stop-at="0:8:10" />
In my searching I also found:
Video node in Russian Invasion 6 that has the same issue on <Page id="day2key4-41">:
Code: Select all
<Video id="Video.mp4" target="day2key4-42" start-at="00:06" />
Audio node in Russian Invasion 2, under <Page id="kalena16">, that uses
start-at="20" which I'm fairly sure is invalid and should be changed to
start-at="0:0:20".
I should note I am using GuideMe v0.4.4 and Tease Downloader v0.95.
This is one of those subtle errors, if you aren't paying attention it still seems to "work", but the effect can be very detrimental to the creators intended experience, especially if the video is way long and you only wanted a few minutes!
It would be a nice feature request for GuideMe to check for this formatting issue, and either correctly interpret alternate time formats, or provide error messages to help creators correct them.
EroticDevelopment (maintainer of
GuideMe) may be able to implement this in a future GuideMe release. Is there a way to tag people in threads?
Another (partial) fix would be an update to the
Tease Downloader by PlayfulGuy to catch and either correct or notify of this issue when downloading a tease. It would not help on download-only (GuideMe native) teases like this one, so GuideMe updates would be the best candidate for fixing this long term.
lackis wrote: Thu Mar 25, 2021 11:49 am
Also, with version 4.3, the sound of the video sometimes continued to play in the background when changing page, forcing a restart to fix.
Regarding this audio playback issue, I believe
GuideMe v0.4.4 fixed the issue where the video sound keeps playing after the page changes.