Music while playing slideshow
Music while playing slideshow
Hi all,
i'd like to play a complete music-file while displaying a slideshow...but the moment the page changes, the music stops :(
Is there a way to do it??
Best ,
Zedd
i'd like to play a complete music-file while displaying a slideshow...but the moment the page changes, the music stops :(
Is there a way to do it??
Best ,
Zedd
-
- Explorer At Heart
- Posts: 138
- Joined: Wed Oct 21, 2015 2:41 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: Slovakia
Re: Music while playing slideshow
In Nyx probably not.
Powerpoint - YES :D
Powerpoint - YES :D
Re: Music while playing slideshow

And TeaseMe?
-
- Explorer At Heart
- Posts: 787
- Joined: Sun Jan 08, 2012 3:10 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Music while playing slideshow
I don't think so for TeaseMe as the music would stop on change of page.
GuideMe it is possible, you would need a single page that played the music file and use java script and a timer to change the image.
Current versions
GuideMe 3.8
64Bit
https://mega.nz/#!RNJGhSJR!9GQX8b9t4xgA ... qtZO6P5NQQ
32Bit
https://mega.nz/#!dVZ0jaJR!VHMkar-v9_vc ... w_mktr-VRo
Download 0.11
64Bit
https://mega.nz/#!ZRJkRSLT!TGY5USWzqsKG ... x7VA7GX5uE
32Bit
https://mega.nz/#!VRBGEYyY!0VRzAdcefqKA ... Ai2iDjNlUc
Nyx Editor
Windows
https://mega.nz/#!tQREUbCR!0TI0Ja4_q0X2 ... E60q3sp9sY
GuideMe 3.8
64Bit
https://mega.nz/#!RNJGhSJR!9GQX8b9t4xgA ... qtZO6P5NQQ
32Bit
https://mega.nz/#!dVZ0jaJR!VHMkar-v9_vc ... w_mktr-VRo
Download 0.11
64Bit
https://mega.nz/#!ZRJkRSLT!TGY5USWzqsKG ... x7VA7GX5uE
32Bit
https://mega.nz/#!VRBGEYyY!0VRzAdcefqKA ... Ai2iDjNlUc
Nyx Editor
Windows
https://mega.nz/#!tQREUbCR!0TI0Ja4_q0X2 ... E60q3sp9sY
Re: Music while playing slideshow
Thanx philo!
Javascript is too complicated for me.... so i'll try to change my tease
Best,
Zedd
Javascript is too complicated for me.... so i'll try to change my tease

Best,
Zedd
- Shattered
- Explorer At Heart
- Posts: 504
- Joined: Fri Jan 11, 2013 6:41 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
- Location: United Kingdom
Re: Music while playing slideshow
Not ideal, but you could request that the user open a link to your music. That's about as good as it gets.
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon!
Try my teases on Milovana!
Simple AI 0.1
--
Like my work and want to see more? Consider supporting my Patreon!
Try my teases on Milovana!
Simple AI 0.1
-
- Explorer At Heart
- Posts: 127
- Joined: Sun Apr 24, 2011 7:23 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: Germany
Re: Music while playing slideshow
you can use teasme and let's say start the audio on the first page for 30 sec and then on the next page the audio starts at 30 sec and so on
is not optimal but should work
is not optimal but should work
That should 1 or 2 lines maybe someone can provide itGuideMe it is possible, you would need a single page that played the music file and use java script and a timer to change the image.
- PlayfulGuy
- Explorer At Heart
- Posts: 323
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Music while playing slideshow
This idea intrigued me so I threw together this working sample for Guideme that does exactly what you want. It includes a simple random slideshow with background music, and another example showing sequential images with background music. I've made it easy enough to customize and (hopefully) put in enough comments for you to figure it out.
The zip file was too big to attach, so here's a Mega link.
Slideshow With Music.zip
In the XML file you'll find three pages defined. The first is named "start" and just provides you with a description and a couple buttons you can use to choose the slideshow you want to see. The other two are the slideshow pages.
Something I thought of after uploading it:
If you look at the code for the SlideshowWithMusic page the first few lines of it look like this:
Code: Select all
<Page id="SlideshowWithMusic">
<!-- In the following Audio element the target="start" attribute makes Guideme go back
to the start page when the music ends -->
<Audio id="Music/*.mp3" target="start" />
The same can be done with the sequential images one of course.
Enjoy!
PG
Last edited by PlayfulGuy on Mon Feb 19, 2018 8:05 pm, edited 1 time in total.
I'd rather be stroking!
Re: Music while playing slideshow
Cool - i'll try it ASAP!!
Re: Music while playing slideshow
Thanks PlayfulGuy! This looks very useful.
I have a question. Do you think it's possible to break the loop and go to different page after x repetitions rather than using a button?
I have a question. Do you think it's possible to break the loop and go to different page after x repetitions rather than using a button?
-
- Explorer At Heart
- Posts: 787
- Joined: Sun Jan 08, 2012 3:10 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Music while playing slideshow
Simplified version of the play a random picture
The main difference is the timer is set as xml not javascript
It play a random audio file then changes the image every 5 to 11 seconds
When the audio finishes it loops back to the same page and plays another random audio file
In the folder where the xml file is you need a slideshow folder and within that an audio folder and an images folder.
The main difference is the timer is set as xml not javascript
It play a random audio file then changes the image every 5 to 11 seconds
When the audio finishes it loops back to the same page and plays another random audio file
In the folder where the xml file is you need a slideshow folder and within that an audio folder and an images folder.
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<Tease id="37050" scriptVersion="v0.1">
<MediaDirectory>slideshow</MediaDirectory>
<Pages>
<Page id="start">
<Text></Text>
<Image id="images/*" />
<Audio id="audio/*" target="start"/>
<Timer seconds="5" imageId="images/*" onTriggered="timer1()" id="imgchng"/>
<javascript><![CDATA[
function timer1() {
guide.resetTimer("imgchng", "(5..11)");
}
]]></javascript>
</Page>
</Pages>
</Tease>
Current versions
GuideMe 3.8
64Bit
https://mega.nz/#!RNJGhSJR!9GQX8b9t4xgA ... qtZO6P5NQQ
32Bit
https://mega.nz/#!dVZ0jaJR!VHMkar-v9_vc ... w_mktr-VRo
Download 0.11
64Bit
https://mega.nz/#!ZRJkRSLT!TGY5USWzqsKG ... x7VA7GX5uE
32Bit
https://mega.nz/#!VRBGEYyY!0VRzAdcefqKA ... Ai2iDjNlUc
Nyx Editor
Windows
https://mega.nz/#!tQREUbCR!0TI0Ja4_q0X2 ... E60q3sp9sY
GuideMe 3.8
64Bit
https://mega.nz/#!RNJGhSJR!9GQX8b9t4xgA ... qtZO6P5NQQ
32Bit
https://mega.nz/#!dVZ0jaJR!VHMkar-v9_vc ... w_mktr-VRo
Download 0.11
64Bit
https://mega.nz/#!ZRJkRSLT!TGY5USWzqsKG ... x7VA7GX5uE
32Bit
https://mega.nz/#!VRBGEYyY!0VRzAdcefqKA ... Ai2iDjNlUc
Nyx Editor
Windows
https://mega.nz/#!tQREUbCR!0TI0Ja4_q0X2 ... E60q3sp9sY
Who is online
Users browsing this forum: No registered users and 9 guests