Hello Kaleo
I have been put in touch with you by the support guys here, regarding plugin coding.
I have been told that you have written a plugin that repeats a full song without any pause or delay.
If its not to much trouble i think you may be able to help me with a problem i have got with my plugin.
Within code i have paused a song in a certain position via :
TSongInfos theInfo;
GetSongInfos(Desk,&theInfo);
SendCommand(Desk,theInfo.PlayPos,"Pause");
I now need to make it play again. I am trying to do this with:
SendCommand(Desk,-1,"Play");
This works BUT there is a 0.5 second delay. Do you manage to make the tracks play without this delay?
Thanks for your help.
Feederman
I have been put in touch with you by the support guys here, regarding plugin coding.
I have been told that you have written a plugin that repeats a full song without any pause or delay.
If its not to much trouble i think you may be able to help me with a problem i have got with my plugin.
Within code i have paused a song in a certain position via :
TSongInfos theInfo;
GetSongInfos(Desk,&theInfo);
SendCommand(Desk,theInfo.PlayPos,"Pause");
I now need to make it play again. I am trying to do this with:
SendCommand(Desk,-1,"Play");
This works BUT there is a 0.5 second delay. Do you manage to make the tracks play without this delay?
Thanks for your help.
Feederman
geposted Sun 10 Aug 03 @ 6:13 pm
Hi,
I surprise that the pause work like this. If you want to pause as soon as possible "-1" is the easy do realize it.
So I don't know how send a command quicker like this.
Maybe you could try to find a way to send it earlier in your plug_in.
Good work.
I surprise that the pause work like this. If you want to pause as soon as possible "-1" is the easy do realize it.
So I don't know how send a command quicker like this.
Maybe you could try to find a way to send it earlier in your plug_in.
Good work.
geposted Sun 10 Aug 03 @ 6:32 pm
Hi yes...
I have put the wrong code in.
I am using :
SendCommand(Desk,-1,"play");
But i still get a delay of 0.5 seconds with this. How do you play the track instantly?
Thanks for your help
Feederman
I have put the wrong code in.
I am using :
SendCommand(Desk,-1,"play");
But i still get a delay of 0.5 seconds with this. How do you play the track instantly?
Thanks for your help
Feederman
geposted Mon 11 Aug 03 @ 12:29 pm
paly or pause is not the matter.
I don't know how to start faster. As I said before, try to send this command early, maybe VDJ start quickly when it receve the command but maybe you send it 0.5 second after you wanted to do.
Do you see?
I don't have other idea.
good luke :)
I don't know how to start faster. As I said before, try to send this command early, maybe VDJ start quickly when it receve the command but maybe you send it 0.5 second after you wanted to do.
Do you see?
I don't have other idea.
good luke :)
geposted Mon 11 Aug 03 @ 1:00 pm