Zork Grand Inquisitor GOG DVD version
Moderator: ScummVM Team
Zork Grand Inquisitor GOG DVD version
GOG just updated to the DVD version, and SCUMMVM 2.0.
However, as its been noted in the forums the game doesn't actually load the DVD vob files and defaults to the AVI files....
Does anyone know how to fix this?
However, as its been noted in the forums the game doesn't actually load the DVD vob files and defaults to the AVI files....
Does anyone know how to fix this?
- eriktorbjorn
- ScummVM Developer
- Posts: 3558
- Joined: Mon Oct 31, 2005 7:39 am
Re: Zork Grand Inquisitor GOG DVD version
Unfortunately, while ScummVM can decode the videos (if it's compiled with libmpeg2 support), it doesn't have an audio decoder for them. So that feature is disabled.Baggins wrote:GOG just updated to the DVD version, and SCUMMVM 2.0.
However, as its been noted in the forums the game doesn't actually load the DVD vob files and defaults to the AVI files....
Does anyone know how to fix this?
It should be possible to use liba52, or at least I think that was the library for it... but you'd still have to write the code for ScummVM to use it. The last attempt I'm aware of never got to the stage where it was really usable and I don't even remember if the code from that experiment still exists.
Re: Zork Grand Inquisitor GOG DVD version
Any updates on DVD fmvs support?
Re: Zork Grand Inquisitor GOG DVD version
Yes: support for those was added to ScummVM in October.
See https://github.com/scummvm/scummvm/pull/1356
See https://github.com/scummvm/scummvm/pull/1356
Re: Zork Grand Inquisitor GOG DVD version
Strange, i'm using latest daily build Scummvm with GoG version of ZGI and movies are not in high qualitycriezy wrote: ↑Fri May 17, 2019 6:26 pm Yes: support for those was added to ScummVM in October.
See https://github.com/scummvm/scummvm/pull/1356
Re: Zork Grand Inquisitor GOG DVD version
The is an optional feature that requires ScummVM to be compiled with both the a52 and mpeg2 libraries. Maybe the nightly build you are using does not have those. You can check in ScummVM which features are included using the About... button. Under Features compiled in you should have both A/52 and MPEG2. If you don't have them, can you tell us which nightly build are you using (for which platform? from where?)?
The other possible issue, is that you have not enabled the game option to use the high resolution videos. You can do it either in the game options in the ScummVM launcher (select the ZGI game, click on Edit Game..., and if the option is available you should have a Use high resolution MPEG video under the Engine tab) or in the game itself (in Preferences turn on the MPEG option in the bottom right corner).
The other possible issue, is that you have not enabled the game option to use the high resolution videos. You can do it either in the game options in the ScummVM launcher (select the ZGI game, click on Edit Game..., and if the option is available you should have a Use high resolution MPEG video under the Engine tab) or in the game itself (in Preferences turn on the MPEG option in the bottom right corner).
-
- Posts: 33
- Joined: Wed Nov 01, 2017 10:34 am
Re: Zork Grand Inquisitor GOG DVD version
I have similar problems in he gog version, I have changed the scummvm version with the last nightly build of the site and there is an option in game (not in engine tab) to switching on the high quality videos, but they do not seem to work. The option of using high quality videos in the engine tab from scummvm does not exist.
And the switch ingame does not seem to save the option. If I start new game the option does not exist and/or the videos are not high quality. So I am unable to watch the intro in high resolution because the tab into scummvm is not present.
Restoring a save that has that option switched on previously and trying to watch a movie does not show it in high resolution.
Probably that option has been removed because Looking into options/about, the MPEG2 feature is there but not the a52 libraries.
I am Using latest builds from May.
Greetings
And the switch ingame does not seem to save the option. If I start new game the option does not exist and/or the videos are not high quality. So I am unable to watch the intro in high resolution because the tab into scummvm is not present.
Restoring a save that has that option switched on previously and trying to watch a movie does not show it in high resolution.
Probably that option has been removed because Looking into options/about, the MPEG2 feature is there but not the a52 libraries.
I am Using latest builds from May.
Greetings
-
- Posts: 33
- Joined: Wed Nov 01, 2017 10:34 am
Re: Zork Grand Inquisitor GOG DVD version
Ok. the problem seems to be solved running a different daily build. The last official development build from the buildbot must be downloaded, not the "additional snapshot" one.
The game launches wth a couple of different videos than before so it seems to be working as intended
The game launches wth a couple of different videos than before so it seems to be working as intended
Re: Zork Grand Inquisitor GOG DVD version
I used Win32 ScummVM Daily Snapshot instead of "Download the official daily builds. They are generated by our buildbot." Should work nowcriezy wrote: ↑Sat May 18, 2019 10:23 pm The is an optional feature that requires ScummVM to be compiled with both the a52 and mpeg2 libraries. Maybe the nightly build you are using does not have those. You can check in ScummVM which features are included using the About... button. Under Features compiled in you should have both A/52 and MPEG2. If you don't have them, can you tell us which nightly build are you using (for which platform? from where?)?
The other possible issue, is that you have not enabled the game option to use the high resolution videos. You can do it either in the game options in the ScummVM launcher (select the ZGI game, click on Edit Game..., and if the option is available you should have a Use high resolution MPEG video under the Engine tab) or in the game itself (in Preferences turn on the MPEG option in the bottom right corner).
- Raziel
- ScummVM Porter
- Posts: 1538
- Joined: Tue Oct 25, 2005 8:27 am
- Location: a dying planet
- Contact:
Re: Zork Grand Inquisitor GOG DVD version
@criezy
Can the playback of those high res videos still be optimized...it runs a little slow with dropouts on weaker machines.
Can the playback of those high res videos still be optimized...it runs a little slow with dropouts on weaker machines.
Re: Zork Grand Inquisitor GOG DVD version
@KainXVIII and @Guadadantza: From the information you have given it appeared that the "additional snapshot" builds were lacking the liba52 support. I have contacted the person who is providing those, and he already added support for it (although you may need to wait for the next one as I am not sure today's build include it). If you have the opportunity to test, please let us know if high-resolution movies work now with those builds.
@Raziel I am not sure. The first thing to do would be to profile the code to see what part of the code takes time. If this is in the video and audio decoding provided by the MPEG2 and liba52 libraries, then there is probably not much we can do. If this is in the ScummVM code, then we could possibly find ways to optimise it.
@Raziel I am not sure. The first thing to do would be to profile the code to see what part of the code takes time. If this is in the video and audio decoding provided by the MPEG2 and liba52 libraries, then there is probably not much we can do. If this is in the ScummVM code, then we could possibly find ways to optimise it.
-
- Posts: 33
- Joined: Wed Nov 01, 2017 10:34 am
Re: Zork Grand Inquisitor GOG DVD version
I can confirm that the last additional snapshot build (21 may) seems to run fine the high res movies, only tested the first two movies and the intro though. The option from scummvm GUI turns on by defect the high res movies switch ingamecriezy wrote: ↑Tue May 21, 2019 8:18 pm @KainXVIII and @Guadadantza: From the information you have given it appeared that the "additional snapshot" builds were lacking the liba52 support. I have contacted the person who is providing those, and he already added support for it (although you may need to wait for the next one as I am not sure today's build include it). If you have the opportunity to test, please let us know if high-resolution movies work now with those builds.
@Raziel I am not sure. The first thing to do would be to profile the code to see what part of the code takes time. If this is in the video and audio decoding provided by the MPEG2 and liba52 libraries, then there is probably not much we can do. If this is in the ScummVM code, then we could possibly find ways to optimise it.
Re: Zork Grand Inquisitor GOG DVD version
Thank you for the confirmation.
- Raziel
- ScummVM Porter
- Posts: 1538
- Joined: Tue Oct 25, 2005 8:27 am
- Location: a dying planet
- Contact:
Re: Zork Grand Inquisitor GOG DVD version
@criezy
Well, back to square one then for me.
scummvm-conf is crashing on trying to use gprof (-pg) and no other profilers available...sigh
Well, back to square one then for me.
scummvm-conf is crashing on trying to use gprof (-pg) and no other profilers available...sigh