Audio Module Rewrite mcisendstring - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: Audio Module Rewrite mcisendstring (/thread-3981.html) |
RE: Audio Module Rewrite mcisendstring - MetalRenard - 04-16-2012 Hey DerVV, I've found a solution for you. RPG Maker XP seems to take EXACTLY 0.5 seconds to load a track. At least, on my PC that is, this may vary, I don't know. My point being, I can introduce 0.5 seconds of silence before a track and then get them to load one after the other then STILL be synced for playback. Question: Does your script load the mp3s in order of their channel? So channel 1 will load before channel 2? If not, is this a possibility? It would mean it loads the track with the silence before it loads the track without it, therefore always playing the music in sync. Also... My problem now is that when it loops, it reloads each time them so my timing falls out of place significantly. Is there a way to keep the tracks loaded and just play them over and over? This would prevent there being a second loading period, and a third etc. I can fix this by manually looping every time and turning off your looping system I guess. Sadly, this doesn't seem to work. I used "BGM_End_Loop" but it didn't stop looping. So, any ideas how to improve on this? :) RE: Audio Module Rewrite mcisendstring - DerVVulfman - 04-17-2012 In regards of your loop delay/sync problem, something must have been disturbed. The system only loads the files once. Once it reaches the loop point, the audio track merely replays from the other point while it is already loaded. It doesn't perform an OPEN command to reload it. RE: Audio Module Rewrite mcisendstring - MetalRenard - 04-17-2012 Oh right... Then I must have done something wrong. ^^ Thanks. RE: Audio Module Rewrite mcisendstring - Landarma - 09-18-2012 Hi. I have a question. I wonder if it is possible to use hash and array instead of case-when for setting loop point. Like: Code: {'filename' => [start, loop, finish']} RE: Audio Module Rewrite mcisendstring - Taylor - 09-19-2012 I actually have done that myself. Here are bits of the Game_System area: PHP Code:
PHP Code:
PHP Code:
PHP Code:
RE: Audio Module Rewrite mcisendstring - RosyPosy - 09-19-2012 This is cool. I can have an air conditioner sound and people talking and a train all in one map. Derp. Alot of audio work I am doing right now. RE: Audio Module Rewrite mcisendstring - DerVVulfman - 08-21-2013
Bump
to version 1.2 I figured out a method to let you alter the starting point in Ogg Vorbis music files. It required an additional parameter that I call an Ogg Offset. Weird... but usable. And the editor had been set up to handle it. But I totally forgot you need to install a codex to hear Ogg files when your PC normally can't. And the audio system now lets you play Midi music using both my system and RPGMaker XP's own default system. As such, the editor had been tweaked to let you flag which Midi pieces may perform that way. Granted, there are negative issues playing midi music using the default audio system 'combined' with music using this one. And now accompanying the system are two more files, one being a helluva help file while the other is a codex installation file so people unable to play .ogg files can at least play them with this system. RE: Audio Module Rewrite mcisendstring - Geminil - 04-18-2020 Sledgehammer bump: This is something I've always have been looking for, the ability to loop a BGM that doesn't require cutting off the intro part. The script works effortlessly, however I wouldn't be posting here if it was without some compatibility issue. Of all the scripts I have, the one that seems to have issue is the Vehicle System script created by yours truly DerVVulfman. Just to be sure I installed the Audio Module script onto the Vehicle demo project to see if it might've been another script causing compatibility problem, however it seems like the two doesn't like each other. Link to thread: https://www.save-point.org/thread-2554.html?highlight=vehicle+system Problems: Just by entering a vehicle would cause a script error. If I was to assume what the problem is, it would be the Vehicle script trying to play the audio assigned to the vehicle which somehow has compatibility problem with the Audio Module script. Another one is for some reason by having these two scripts together it causes a script error with Save Files, even newly fresh ones after installing the scripts. Having a game where one's Save File being unable to be load due to script error is totally no fun. RE: Audio Module Rewrite mcisendstring - DerVVulfman - 04-18-2020 Did you check 'script order' ? The Audio Module Rewrite mcisendstring performs a rewrite and overhaul of the audio system. So it would take precedent over the original audio system. As such, it would be best to have Audio Module Rewrite mcisendstring high up in your list of custom scripts while other scripts which would access or play any audio would be best placed further below. Other than that, it would be requested to supply the actual error message generated as well as the actual line (if any configuration changes affects the line numbering). (Currently typing at work... away from my PC with em') RE: Audio Module Rewrite mcisendstring - Geminil - 04-18-2020 (04-18-2020, 06:11 PM)DerVVulfman Wrote: Did you check 'script order' ? I have tried rearranging the script order by having the Audio Module scripts on the top followed by the scripts for the Vehicle System and the result has not changed unfortunately. I am using the both scripts system from the demo project completely untouched. As for the error messages, there are three I have managed to produce. This message is given when entering a Vehicle. Code: Script '* Vehicles' line 1291: NoMethodError occurred. and the line number of the script: Code: n = value_name.name The second message is given when loading a save file on a map with a BGM playing. Code: Script '* Audio Class Rewrite' line 1063: NoMethodError occurred. and the line number of the script: Code: passed = true unless Audio.bgm_check(channel) == "Audio/BGM/" + bgm.name The third message is given when loading a save file on a map without a BGM playing. Code: Script '* Audio Class Rewrite' line 1063: NoMethodError occurred. The line of the script should be the same as the one above. |