Hi,
is there a way I can open an audio file using mci (mcuSendString) which is actually a file stream?
What I mean is, I know I can open a file using the code:
but what I want is to open a file, with an alias, using a file stream which I have open in a c# application. is there a way to do this? I know that using normal files is simpler because it is just MCI command line, and not an actual file, but I could realy use a way to play music through MCI using a file stream.
Thanks
is there a way I can open an audio file using mci (mcuSendString) which is actually a file stream?
What I mean is, I know I can open a file using the code:
Code:
mciSendString("open \"c:\file.mp3\" alais song");
but what I want is to open a file, with an alias, using a file stream which I have open in a c# application. is there a way to do this? I know that using normal files is simpler because it is just MCI command line, and not an actual file, but I could realy use a way to play music through MCI using a file stream.
Thanks