Hi I want to stream a video from my android phone to another android phone over bluetooth, I see that there is a VDP to use but this profile is not available in android sdk there is a profile A2dp which is responsible for audio streaming only. Is there a different method in order to implement that with android sdk?
32 Answers
As I known, if you want to make the video streaming over bluetooth, it's not suitable. Because whether SPP or BLE is not suitable for this kind of mass data transmission, I mean that if you want to make it as good as the A2DP over bluetooth, I mean the Real-Time. But if you don't care about the Real-Time. You can use SPP or BLE to transmit the video data, and encode/decode the video data by yourself. The most important is that the transmit speed of Bluetooth.
If you just only need to transmit the video file to the other device, you can treat the video as a file, and transmit it as data.
2I think there is an AVDTP profile to do that in Bluetooth classic. and even AVCTP for controlling that stream as well.