Re: seeking in sound-lib

2020-06-29 Thread AudioGames . net Forum — Developers room : Turkce_Rap via Audiogames-reflector
Re: seeking in sound-lib @5i meant my previous topic about trying to build a music player. Thanks anyway. URL: https://forum.audiogames.net/post/546854/#p546854 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : Simter via Audiogames-reflector
Re: seeking in sound-lib @jaidon, this media player is a german program. And yes, surprisingly it actually does. How eveer you have to use utf8 decoding. URL: https://forum.audiogames.net/post/546761/#p546761 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector
Re: seeking in sound-lib @Simter, out of curiosity, do you ever write code in German? Or do you write it in English only? In fact, will the python inturprator accept German words? I also know you guys have a few extra letters as well, so that just popped in my head. URL: https

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: seeking in sound-lib @4Because you asked for a wrapper for Windows Media Player, which is an entirely different thing. URL: https://forum.audiogames.net/post/546710/#p546710 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : Turkce_Rap via Audiogames-reflector
Re: seeking in sound-lib cartertemm wrote:You want the position property on your sound_lib channel, self.handle.pos = self.handle.position# and to set laterself.handle.position = posNote that pos will be a number in bytes. This makes sense, since the duration as represented by time can

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : Simter via Audiogames-reflector
Re: seeking in sound-lib @2 thanks, for reference, i made it like this. This is what i wrote into sound.py. @property def position(self):  return self.handle.position @position.setter def position(self,value):  self.handle.position=valueAnd this is how i wrote it in my little program here

Re: seeking in sound-lib

2020-06-28 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector
Re: seeking in sound-lib You want the position property on your sound_lib channel, self.handle.pos = self.handle.position# and to set laterself.handle.position = posNote that pos will be a number in bytes. This makes sense, since the duration as represented by time can change easily for a

seeking in sound-lib

2020-06-27 Thread AudioGames . net Forum — Developers room : Simter via Audiogames-reflector
seeking in sound-lib Hello. I have a file_stream object in sound lib that i can play audio with. But how do i seek in it? I am using carters sound class which i downloaded from americranians python tutorial and it doesn't offer this function but i am coding a small media player so it