Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: The program for playing audio files by the key I can't really tell about libaudioverse, it worked on small games I made to test it, but on something bigger...I wouldn't be surprised though, its node system must be quite expensive to computation. From my tests, Bass is library

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Nuno via Audiogames-reflector
Re: The program for playing audio files by the key BTW I wonder if there's a way to convert C# dict to an INI file URL: https://forum.audiogames.net/post/494384/#p494384 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key @14, whatever it does is right but inefficient. FMOD and BASS do that a lot better IMO.As for serialization with PICKLE, I wouldn't do that if you want to be able to keep the code the same for the long term. Pickle is well known

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Thats probably why it starts lagging as soon as you try to process several sounds at once. URL: https://forum.audiogames.net/post/494375/#p494375 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key Libaudioverse is also a ridiculous CPU hog (or at least it was when I was using it in a game). URL: https://forum.audiogames.net/post/494373/#p494373 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Libaudioverse is, at least when I tried it out last, very inperformant and can get laggy and mess things up as soon as you play more than one sound at a time, even on higher end machines. It is also rather large in size (something larger

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: The program for playing audio files by the key @1: regarding sound I can send you my wrapper for libaudioverse, which turns its node based system into bgt style Sound object, so you can use basically the same methods as you would in BGT, like play, play_wait, play_looped, stop, etc

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key @9, actually the termonology is correct. At the system level, there are two types of "tasks" that an operating system has: if the OS does not implement multithreading/concurrency, you have just "processes". If, on the

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key @9, actually the termonology is correct. At the system level, there are two typeso f "tasks" that an operating system has: (1) if the OS does not implement multithreading/concurrency, you have just "processes". If, on

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Well, the only problem with it is calling it threading, actually. Its nice to have blocking operations run simultaneously, although its technically just one thread, but it allows a bit flexibility if operations tike quite a long time

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key @7, ah, I didn't know that. And yes, QT does support native threading (I've used it before in C++, its actually pretty badass) but entirely unnecessary. If youneed it, you should probably read a book on it or get someone to teach you

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key BASS supports it for sure, even to multiple devices at the same time. I however don't know if sound_lib does. Bass4Py does though.Threading in Python is... yeah, not impossible, but yeah. Since Asyncio exists now for Python 3, it got a bit

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key Do not use threading for this. Just... no. Not sure where you thought that was a good idea, but it will be a waste of CPU cycles, CPU time and system resources. Audio playback (inn any good audio library and in any good OS-level audio

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: The program for playing audio files by the key Do not use threading for this. Just... no. Not sure where you thought that was a good idea, but it will be a waste of CPU cycles, CPU time and system resources. Audio playback (inn any good audio library and in any good OS-level audio

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Its fine in most cases. It even supports additional attributes like accessible name and accessible descriptions, which will be recognized by screen readers to give additional information about controls and stuff. Qt has the ability to even

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Its fine in most cases. It even supports additional attributes like accessible name and accessible descriptions, which will be recognized by screen readers to give additional information about controls and stuff. Qt has the ability to even

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Nuno via Audiogames-reflector
Re: The program for playing audio files by the key Hijacker, how's PyQT if it comes to accessibility? URL: https://forum.audiogames.net/post/494252/#p494252 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: The program for playing audio files by the key Python should be just fine here. I'd however recommend using PyQt5 instead of wxPython, there are several in-depth tutorials out there and wxPython still got its problems at the time. If it comes to playing stuff to multiple devices, BASS

Re: The program for playing audio files by the key

2020-01-20 Thread AudioGames . net Forum — Developers room : Nuno via Audiogames-reflector
Re: The program for playing audio files by the key Lol, lol lol ol!Hm, hehe, umm in Python you can use WX Python, and in C#, hm I guess winforms would be sufficient, or maybe not? Maybe WPF, UWP, hm? Avalonia! Oh! That one's not accessible.I recommend using C++, or Pure Basic, or Electron

The program for playing audio files by the key

2020-01-19 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector
The program for playing audio files by the key Hello.My friend asked me to develop an application for his work. I decided that this is a very good idea, because I can use this as a portfolio.The tasks of the program are very simple.There is a main window. In this window I can get