Search found 1294 matches
- Fri 2023-11-17 14:35
- Forum: VS1005 and VSOS Software
- Topic: VS1005 devCrypt Driver v1.00
- Replies: 1
- Views: 4652
Re: VS1005 devCrypt Driver v1.01
Hello! Here is an immediate update to the devCrypt driver. There was an issue that would show itself if you read two files simultaneously from an SD card, one file in plaintext and the other file encrypted. This has now been corrected. The documentation now also includes speed tests. In short, you c...
- Wed 2023-11-15 11:49
- Forum: VS1005 and VSOS Software
- Topic: VS1005 devCrypt Driver v1.00
- Replies: 1
- Views: 4652
VS1005 devCrypt Driver v1.00
Hello! It is with great pleasure that I present you with an all-new decrypting driver devCrypt for VS1005. With this driver, and the accompanying encryption software, it is possible to encrypt files on a PC using a Secret Key, then decrypt the files on a device containing a VS1005 and the secret key...
- Fri 2023-11-10 11:19
- Forum: VS1005 and VSOS Software
- Topic: fir2vsdsp.m content
- Replies: 2
- Views: 4260
Re: fir2vsdsp.m content
Hello!
At the moment, only 16 bits is supported.
However, for your particular need, we already have a high-quality equalizer driver available, called FtEqu. Have you tried it?
Kind regards,
- Henrik
At the moment, only 16 bits is supported.
However, for your particular need, we already have a high-quality equalizer driver available, called FtEqu. Have you tried it?
Kind regards,
- Henrik
- Fri 2023-11-10 11:12
- Forum: VS1005 and VSOS Software
- Topic: Test problems found by FTOREV23
- Replies: 6
- Views: 5657
Re: Test problems found by FTOREV23
Hello!
I have downloaded your files and looking at the issue.
I will write here when I know what the issue is.
One question:
If you run SetClock without any parameters, what is the output?
Kind regards,
- Henrik
I have downloaded your files and looking at the issue.
I will write here when I know what the issue is.
One question:
If you run SetClock without any parameters, what is the output?
Code: Select all
S:>setclock
- Henrik
- Thu 2023-09-14 11:31
- Forum: VS1010 Forum
- Topic: VS1010 Audiobook
- Replies: 1
- Views: 3175
Re: VS1010 Audiobook
Hello! I would like to add that the current demo version of AudioBook is very suitable for devices with an LCD screen: it is capable of displaying on the console (can be redirected to e.g. LCD) the current passage. In the case of The Bible, and depending on the size of the screen, AudioBook can show...
- Wed 2023-09-13 13:23
- Forum: VS1005 and VSOS Software
- Topic: PlayDirR - Player with fast song repeat capability
- Replies: 0
- Views: 4048
PlayDirR - Player with fast song repeat capability
Hello! Attached to this message is a new VS1005 audio player, PlayDirR.dl3. PlayDirR is an audio player capable of playing audio files a directory at the time. It is much like PlayDir, except that it enables a fast, sample-accurate and seamless song repeat function. Documentation for the application...
- Fri 2023-08-18 10:52
- Forum: VS1010 Forum
- Topic: VS1010 Basic Player, source+doc+video
- Replies: 1
- Views: 2017
VS1010 Basic Player, source+doc+video
Dear Forum Members, Attached to this message is a new VS1010 Basic MP3 Player with documentation. The aim of the project is to equip the reader with the necessary tools for creating their own audio player on the VS1010 platform. The code is intended to be easy to read while still being useful. There...
- Tue 2023-08-15 8:54
- Forum: Slave Decoder Applications
- Topic: VS1053 ogg playback is not working
- Replies: 2
- Views: 2679
Re: VS1053 ogg playback is not working
Hello! Have you been able to solve your issue? If not, could you save the beginning of a stream to a file so that we could check whether all headers are formatted in such a way that VS1053 would be happy with it? It doesn't have to be a very long piece, typically 8-16 KiB should be enough for us to ...
- Tue 2023-08-15 8:39
- Forum: VS1005 and VSOS Software
- Topic: A problem with FTxREV applications
- Replies: 2
- Views: 2356
Re: A problem with FTxREV applications
Hello!
Unfortunately the current Reverb Generator does not support adding an Equalization Filter that would only apply to the Wet part of audio.
Can you explain why you want to do this? If we understand the reason, perhaps we can help.
Kind regards,
- Henrik
Unfortunately the current Reverb Generator does not support adding an Equalization Filter that would only apply to the Wet part of audio.
Can you explain why you want to do this? If we understand the reason, perhaps we can help.
Kind regards,
- Henrik
- Wed 2023-07-19 9:14
- Forum: VS1005 and VSOS Software
- Topic: An error occurred during uninstalling FTOEQU, causing the system to crash
- Replies: 4
- Views: 2638
Re: An error occurred during uninstalling FTOEQU, causing the system to crash
Just to add to the previous message, you can either turn all filters off by calling: SetEqu 1 0 SetEqu 2 0 [...] SetEqu 16 0 ... or from C code something like ... #include <aucommon.h> #include <vsos.h> int i; for (i=0; i<16; i++) { struct FilterEqualizer fltEqu = {0}; ioctl(fp, IOCTL_AUDIO_SET_EQU_...