I have tried to send 12-bit audio to be listened to in real time through the HC05 SPP bluetooth module hooked up to an arduino and DAC over serial with a python RFCOMM socket. I have since learned that Serial Port Protocol is not very great at all for this purpose due to its low bandwidth. I figured I could definitely send the data and then play it out through a DAC, but I doubt an arduino would hold an array the size of a WAV file and maybe not even an mp3 file, but that would defeat the purpose of controlling the audio (play,pause,rewind,etc) from my computer. Would it be more realistic and worthwhile to use an A2DP enabled bluetooth module? Or is it still possible to listen to acceptable quality 12-16 bit audio in real time with SPP? I have tried to use lower bit songs, adjusted baud rates for the arduino and HC-05 serial ports, and tried to adjust the magnitude of the values outputted by the DAC to the audio port and I still seem to get crackly audio. It seems the problem comes down to the low bitrate transfer speed of SPP, or am I wrong?
Is it realistic to stream 12-16 bit audio through SPP bluetooth in realtime?
395 Views Asked by user P520 At
1
There are 1 best solutions below
Related Questions in AUDIO
- Play multiple audio files in a slider
- Unity3d AudioSource not creatable
- JavaFX can't play mp3 files
- iPhone simultaneous sound output
- Phonegap Build App - Play Audio
- HTML5 Audio pause not working
- Java boolean play button issue (play over and over again with each click)
- import a sound externally or from the library? AS3
- Set audio source
- Saving a sound bite as a ringtone
- Using OnAudioFilterRead with playOnAwake
- Audio recorded with Samsung does not play on iOS
- fftw of 16bit Audio :: peak appearing wrong at 2f
- How to Export an audio file with effect in iOS
- Tried multiple solutions onsite, none worked: Play <audio> on Konami code
Related Questions in BLUETOOTH
- Bluetooth connection to Sphero is lost when smartphone "goes to sleep"
- MFi Program by Apple
- Android Wear Device as iBeacon
- android - How to get a iBecon detection state when I kill app from Background?
- IOException: broken pipe when sending file from android device to PC via Bluetooth
- How deploy an large number iBeacons
- Send a Android BLE GATT Notification
- burst notifications with Bluetooth Low Energy on Android
- Is there a way to change bluetooth module's baud rate via Bluetooth connection with Android device?
- NFC Bluetooth handover - WITHOUT user confirmation
- Is it possible to create an app that when installed the user can easily turn Bluetooth/NFC ON and OFF by double clicking the Home button?
- Difference between attributes and services in BLE
- Global name 'bluetooth' is not defined
- iOS Bluetooth list of devices already connected?
- Bluetooth discovery not starting on first click
Related Questions in BITRATE
- Adaptive Bitrate streaming in ios
- Bit-rate calculation in Jpeg2000 image compression
- ffmpeg FLAC 24 bit 96khz to 16 bit 48khz
- Finding characters per sec using asynchronous mode
- Determining the uncompressed bit-rate of a video
- What is the difference between baud rate and bit rate?
- Simulate video dissemination with different bitrate on the network
- How can I read the properties of an audio file in Objective-C for iOS?
- Does there exist any android api that returns mediafile bitrate, framerate etc?
- How to get Sampling rate and frequency of music file (MP3) in android?
- What exactly does bitrate mean in an video/audio file?
- How to change bitrate of a video using opencv python library
- How to determine .mp3 bit rate without downloading it?
- What is the correct way to set maxrate on android ffmpeg library?
- MPMoviePlayerController MovieAccessLogEvent - Inflated observedBitrate
Related Questions in SPP
- Is there a way to change bluetooth module's baud rate via Bluetooth connection with Android device?
- Universal Application + Bluetooth + SPP
- Programming on Bluetooth module
- How to know whether a Bluetooth dongle supports the Serial Port Profile (SPP) in WinXP SP3?
- replace the header line of several sequences in a fasta file and replace them with the species names stored in a list (.txt)
- Android Bluetooth Program Stops Receiving Characters After About a Minute. java.io.exception: BT Socket Closed Read Return: -1
- Increase speed on RN-41 bluetooth SPP?
- Why is PrintWriter used in this code snippet for bluetooth SPP communication?
- Android - SPP UUID for Nexus One running Android 2.3.6
- android sample bluetooth chat to serial bluetooth adaptor(rs232) communication
- How to remove colour scale legend from plot() of spp density in R
- Data passing problem from a class to a activity
- Bluetooth -> Winapi/32feet. Two connection from Pc to one device using Spp
- Using serial ports over bluetooth with micro bit
- about bluetooth spp retransmission
Related Questions in A2DP
- The sound quality of a2dp sink on android is terrible. How could I fix it?
- Turn Android phone into Bluetooth headset
- BlueZ vs Bluedroid bluetooth stack
- Android MediaRouter splitting audio and video routes to play video on external display via Presentation and audio via bluetooth
- Explain relation between asound.conf file with HFP and A2DP commands
- Trying to Send Metadata via A2DP / AVRCP
- How can I enable the new Bluetooth A2DP Sink feature introduced in Lollipop?
- How to block connection request from already paired devices(phones) using bluez?
- Creating our own A2DP profile using java
- how to use org.bluez.AudioSource GetProperty
- Toggling A2DP Device (Android)
- How to modify Android Bluetooth Chat to connect with A2DP device?
- Bluez as standalone on Android
- Qt How to properly connect to a phone programmatically (Bluetooth A2DP, AVRCP, HSP, HFP) in Linux
- How To Modify Android's Bluetooth Stack to Enable A2dp Sink
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Sure, at some awfully slow sample rate <= 8 kHz. You'd be better off sending 8-bit audio at a higher sample rate.
Yes, absolutely, without question. That's what it's designed for, as I mentioned in your other question.
Acceptable is subjective. If it's just voice, you can get away with it. If you want reasonable audio quality for music, almost universally, no, it's not acceptable.
Without any code to inspect and debug, it's impossible to say what the specific problem is that you're referring to. Undoubtedly, the low bandwidth will not enable good quality audio anyway.
If you must continue to use SPP and simple codecs like PCM, at least use differential PCM to save a bit more bandwidth.