Obsolete
Status Update
Comments
[Deleted User] <[Deleted User]> #2
redacted
gd...@google.com <gd...@google.com> #3
redacted
[Deleted User] <[Deleted User]> #4
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
What steps are needed to reproduce this issue? Frequency of occurrence?
Which Android build are you using? (e.g. TQ3A.230705.001.A1)
Can you confirm if this issue is reproducible on a Pixel/Nexus device?
Are you reporting this as Developer or User?
Screen Record of the Issue
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:https://developer.android.com/studio/debug/bug-report#bugreportdevice
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report and screenshot to google drive and share the folder to android-bugreport@google.com, then share the link here.
What steps are needed to reproduce this issue? Frequency of occurrence?
Which Android build are you using? (e.g. TQ3A.230705.001.A1)
Can you confirm if this issue is reproducible on a Pixel/Nexus device?
Are you reporting this as Developer or User?
Screen Record of the Issue
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report and screenshot to google drive and share the folder to android-bugreport@google.com, then share the link here.
[Deleted User] <[Deleted User]> #5
This is meant as Feature request rather than a bug report. I read somewhere this issue tracker is for both, but did not see where to change between bug/feature request..
I was just surprised there is no way to check the obtained IP Address when using a USB-C Ethernet Adapter in Android and believe this Info should be available via GUI..
>What steps are needed to reproduce this issue?
See attached screencast
>Frequency of occurrence?
Always - missing feature
>Which Android build are you using? (e.g. TQ3A.230705.001.A1)
Dont know, i have Android 14 Patchlevel 5. September 2024 (Stock Image Pixel 9 Pro)
>Can you confirm if this issue is reproducible on a Pixel/Nexus device?
I have a Pixel 9 Pro
>Are you reporting this as Developer or User?
I am reporting this as User
Kind Regards,
Stefan
I was just surprised there is no way to check the obtained IP Address when using a USB-C Ethernet Adapter in Android and believe this Info should be available via GUI..
>What steps are needed to reproduce this issue?
See attached screencast
>Frequency of occurrence?
Always - missing feature
>Which Android build are you using? (e.g. TQ3A.230705.001.A1)
Dont know, i have Android 14 Patchlevel 5. September 2024 (Stock Image Pixel 9 Pro)
>Can you confirm if this issue is reproducible on a Pixel/Nexus device?
I have a Pixel 9 Pro
>Are you reporting this as Developer or User?
I am reporting this as User
Kind Regards,
Stefan
jm...@google.com <jm...@google.com> #6
>Which Android build are you using?
Ah, i found the Build number: AD1A.240905.004
And i found a way to see the obtained IP Address:
Settings->About Phone->IP Address
But i guess the feature request is still valid. It makes sense to have a "Network Status Page" when using Ethernet, just like there is a "Network Status Page" when connected via WiFi.
Ah, i found the Build number: AD1A.240905.004
And i found a way to see the obtained IP Address:
Settings->About Phone->IP Address
But i guess the feature request is still valid. It makes sense to have a "Network Status Page" when using Ethernet, just like there is a "Network Status Page" when connected via WiFi.
kn...@google.com <kn...@google.com> #7
It looks like you are raising an issue as an Android user, rather than an Android Open Source Developer.
For user support, please see the
For Pixel phone support, please see the
Support for other devices is provided by the device manufacturers or by the carriers selling those devices,
na...@gmail.com <na...@gmail.com> #8
I working on a live transcription service using GCP Speech-To-Text API.
I got some latency with the speech client.
I use this function for handle audio stream through socket.io-stream from client
function transcribeAudioStream(audio, speechClient, requestSTT, cb) {
const recognizeStream = speechClient.streamingRecognize(requestSTT)
.on('data', function (data) {
cb(data);
console.log('STT DATA - %s', Date.now() / 1000)
})
.on('error', (e) => {
console.log(e);
})
.on('end', () => {
console.log('Stop');
});
audio.pipe(recognizeStream);
audio.on('end', function () {
});
};
My request:
{
config: {
sampleRateHertz: 16000,
encoding: 'LINEAR16',
languageCode: 'ja-JP',
metadata: {
interactionType: 'DISCUSSION',
microphoneDistance: 'NEARFIELD',
recordingDeviceType: 'PC',
originalMediaType: 'AUDIO'
},
profanityFilter: true,
model: '',
useEnhanced: false
},
singleUtterance: true,
interimResults: true
}
I got 0.3-0.7s latency with the first interim results, the later is about 0.1s.
My log look like this, the number is seconds (Date.now()/1000)
----START TRANS - 1608026022.831----
- Receiving data from pCsz8hOGdcAUJ5UJAAAB!
START TRANSCRIBE: 1608026022.831
新大久保
STT DATA - 1608026023.934
新大久保 チーズ
STT DATA - 1608026024.226
新大久保
STT DATA - 1608026024.319
新大久保
STT DATA - 1608026024.342
新大久保
STT DATA - 1608026024.4
新大久保 に接続
+++ GOT TRANSCRIPT - 1608026024.488 +++
STT DATA - 1608026024.488
Stop
++ GOT TRANSLATE - 1608026024.671 ++
- Sending results to pCsz8hOGdcAUJ5UJAAAB!!!
{
translation: 'Connect to Shin-Okubo',
re_translation: 'Connect to Shin-Okubo',
transcript: '新大久保 に接続',
isFinal: true
}
----FINISH TRANSCRIBE - 1608026024.672----
In the client I use RecordRTC to record audio with timeslice is 4 seconds.
Can you tell me why the first result take that much time?
How could I improve overall for reaching real time transcription?
Thank you.
I got some latency with the speech client.
I use this function for handle audio stream through socket.io-stream from client
function transcribeAudioStream(audio, speechClient, requestSTT, cb) {
const recognizeStream = speechClient.streamingRecognize(requestSTT)
.on('data', function (data) {
cb(data);
console.log('STT DATA - %s', Date.now() / 1000)
})
.on('error', (e) => {
console.log(e);
})
.on('end', () => {
console.log('Stop');
});
audio.pipe(recognizeStream);
audio.on('end', function () {
});
};
My request:
{
config: {
sampleRateHertz: 16000,
encoding: 'LINEAR16',
languageCode: 'ja-JP',
metadata: {
interactionType: 'DISCUSSION',
microphoneDistance: 'NEARFIELD',
recordingDeviceType: 'PC',
originalMediaType: 'AUDIO'
},
profanityFilter: true,
model: '',
useEnhanced: false
},
singleUtterance: true,
interimResults: true
}
I got 0.3-0.7s latency with the first interim results, the later is about 0.1s.
My log look like this, the number is seconds (Date.now()/1000)
----START TRANS - 1608026022.831----
- Receiving data from pCsz8hOGdcAUJ5UJAAAB!
START TRANSCRIBE: 1608026022.831
新大久保
STT DATA - 1608026023.934
新大久保 チーズ
STT DATA - 1608026024.226
新大久保
STT DATA - 1608026024.319
新大久保
STT DATA - 1608026024.342
新大久保
STT DATA - 1608026024.4
新大久保 に接続
+++ GOT TRANSCRIPT - 1608026024.488 +++
STT DATA - 1608026024.488
Stop
++ GOT TRANSLATE - 1608026024.671 ++
- Sending results to pCsz8hOGdcAUJ5UJAAAB!!!
{
translation: 'Connect to Shin-Okubo',
re_translation: 'Connect to Shin-Okubo',
transcript: '新大久保 に接続',
isFinal: true
}
----FINISH TRANSCRIBE - 1608026024.672----
In the client I use RecordRTC to record audio with timeslice is 4 seconds.
Can you tell me why the first result take that much time?
How could I improve overall for reaching real time transcription?
Thank you.
bo...@gmail.com <bo...@gmail.com> #9
IF The Links above do not work, you can click the links below to the alternative links that always works
LINK 1 ➣➣https://bit.ly/3rnNHk7
LINK 2 ➣➣https://bit.ly/3CsFphg
The streaming giant has a massive catalog of television shows and movies, but it does not include ‘the movie.’ We recommend our readers watch other dark fantasy films like ‘The Witcher: Nightmare of the Wolf.’
Is the movie on Amazon Prime?
Amazon Prime’s current catalog does not include ‘the movie.’ However, the film may eventually release on the platform as video-on-demand in the coming months. Therefore, people must regularly look for the dark fantasy movie on Amazon Prime’s official website. Viewers who are looking for something similar can watch the original show ‘Dororo.’
There are a few ways to watch the movie online in the U.S. You can use a streaming service such as Netflix, Hulu, or Amazon Prime Video. You can also rent or buy the movie on iTunes or Google Play. You can also watch it on-demand or on a streaming app available on your TV or streaming device if you have cable.
Where to Watch the movie Online? There are currently no platforms that have the rights to Watch the movie Online. MAPPA has decided to air the movie only in theaters because it has been a huge success. The studio, on the other hand, does not wish to divert revenue. Streaming the movie would only slash the profits, not increase them.
As a result, no streaming services are authorized to offer the movie for free. The film would, however, very definitely be acquired by services like Funimation, Netflix, and Crunchyroll. As a last consideration, which of these outlets will likely distribute the film worldwide?
Is the movie available on HBO Max? HBO Max is a relatively new streaming service that offers the movie for viewing. You can watch the movie on HBO Max if you’re already a member. If you aren’t already a member, you can sign up for a one-month free trial and then cancel it before the month is up if you don’t want to keep the subscription.
Is the movie Available On Disney Plus? the movie is a movie that may be streamed on Disney Plus. You can watch the movie on Disney Plus if you’re already a member. If you don’t want to subscribe after trying out the service for a month, you can cancel before the month ends. On other streaming services, the movie may be rented or purchased.
What is the movie About?
Watch the movie Full Movie Online Free Streaming at Home in 1080P HD and 4K Quality - As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.
LINK 1 ➣➣
LINK 2 ➣➣
The streaming giant has a massive catalog of television shows and movies, but it does not include ‘the movie.’ We recommend our readers watch other dark fantasy films like ‘The Witcher: Nightmare of the Wolf.’
Is the movie on Amazon Prime?
Amazon Prime’s current catalog does not include ‘the movie.’ However, the film may eventually release on the platform as video-on-demand in the coming months. Therefore, people must regularly look for the dark fantasy movie on Amazon Prime’s official website. Viewers who are looking for something similar can watch the original show ‘Dororo.’
There are a few ways to watch the movie online in the U.S. You can use a streaming service such as Netflix, Hulu, or Amazon Prime Video. You can also rent or buy the movie on iTunes or Google Play. You can also watch it on-demand or on a streaming app available on your TV or streaming device if you have cable.
Where to Watch the movie Online? There are currently no platforms that have the rights to Watch the movie Online. MAPPA has decided to air the movie only in theaters because it has been a huge success. The studio, on the other hand, does not wish to divert revenue. Streaming the movie would only slash the profits, not increase them.
As a result, no streaming services are authorized to offer the movie for free. The film would, however, very definitely be acquired by services like Funimation, Netflix, and Crunchyroll. As a last consideration, which of these outlets will likely distribute the film worldwide?
Is the movie available on HBO Max? HBO Max is a relatively new streaming service that offers the movie for viewing. You can watch the movie on HBO Max if you’re already a member. If you aren’t already a member, you can sign up for a one-month free trial and then cancel it before the month is up if you don’t want to keep the subscription.
Is the movie Available On Disney Plus? the movie is a movie that may be streamed on Disney Plus. You can watch the movie on Disney Plus if you’re already a member. If you don’t want to subscribe after trying out the service for a month, you can cancel before the month ends. On other streaming services, the movie may be rented or purchased.
What is the movie About?
Watch the movie Full Movie Online Free Streaming at Home in 1080P HD and 4K Quality - As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.
an...@gmail.com <an...@gmail.com> #10
IF The Links above do not work, you can click the links below to the alternative links that always works
LINK 1 ➣➣https://bit.ly/3rnNHk7
LINK 2 ➣➣https://bit.ly/3CsFphg
The streaming giant has a massive catalog of television shows and movies, but it does not include ‘the movie.’ We recommend our readers watch other dark fantasy films like ‘The Witcher: Nightmare of the Wolf.’
Is the movie on Amazon Prime?
Amazon Prime’s current catalog does not include ‘the movie.’ However, the film may eventually release on the platform as video-on-demand in the coming months. Therefore, people must regularly look for the dark fantasy movie on Amazon Prime’s official website. Viewers who are looking for something similar can watch the original show ‘Dororo.’
There are a few ways to watch the movie online in the U.S. You can use a streaming service such as Netflix, Hulu, or Amazon Prime Video. You can also rent or buy the movie on iTunes or Google Play. You can also watch it on-demand or on a streaming app available on your TV or streaming device if you have cable.
Where to Watch the movie Online? There are currently no platforms that have the rights to Watch the movie Online. MAPPA has decided to air the movie only in theaters because it has been a huge success. The studio, on the other hand, does not wish to divert revenue. Streaming the movie would only slash the profits, not increase them.
As a result, no streaming services are authorized to offer the movie for free. The film would, however, very definitely be acquired by services like Funimation, Netflix, and Crunchyroll. As a last consideration, which of these outlets will likely distribute the film worldwide?
Is the movie available on HBO Max? HBO Max is a relatively new streaming service that offers the movie for viewing. You can watch the movie on HBO Max if you’re already a member. If you aren’t already a member, you can sign up for a one-month free trial and then cancel it before the month is up if you don’t want to keep the subscription.
Is the movie Available On Disney Plus? the movie is a movie that may be streamed on Disney Plus. You can watch the movie on Disney Plus if you’re already a member. If you don’t want to subscribe after trying out the service for a month, you can cancel before the month ends. On other streaming services, the movie may be rented or purchased.
What is the movie About?
Watch the movie Full Movie Online Free Streaming at Home in 1080P HD and 4K Quality - As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.
LINK 1 ➣➣
LINK 2 ➣➣
The streaming giant has a massive catalog of television shows and movies, but it does not include ‘the movie.’ We recommend our readers watch other dark fantasy films like ‘The Witcher: Nightmare of the Wolf.’
Is the movie on Amazon Prime?
Amazon Prime’s current catalog does not include ‘the movie.’ However, the film may eventually release on the platform as video-on-demand in the coming months. Therefore, people must regularly look for the dark fantasy movie on Amazon Prime’s official website. Viewers who are looking for something similar can watch the original show ‘Dororo.’
There are a few ways to watch the movie online in the U.S. You can use a streaming service such as Netflix, Hulu, or Amazon Prime Video. You can also rent or buy the movie on iTunes or Google Play. You can also watch it on-demand or on a streaming app available on your TV or streaming device if you have cable.
Where to Watch the movie Online? There are currently no platforms that have the rights to Watch the movie Online. MAPPA has decided to air the movie only in theaters because it has been a huge success. The studio, on the other hand, does not wish to divert revenue. Streaming the movie would only slash the profits, not increase them.
As a result, no streaming services are authorized to offer the movie for free. The film would, however, very definitely be acquired by services like Funimation, Netflix, and Crunchyroll. As a last consideration, which of these outlets will likely distribute the film worldwide?
Is the movie available on HBO Max? HBO Max is a relatively new streaming service that offers the movie for viewing. You can watch the movie on HBO Max if you’re already a member. If you aren’t already a member, you can sign up for a one-month free trial and then cancel it before the month is up if you don’t want to keep the subscription.
Is the movie Available On Disney Plus? the movie is a movie that may be streamed on Disney Plus. You can watch the movie on Disney Plus if you’re already a member. If you don’t want to subscribe after trying out the service for a month, you can cancel before the month ends. On other streaming services, the movie may be rented or purchased.
What is the movie About?
Watch the movie Full Movie Online Free Streaming at Home in 1080P HD and 4K Quality - As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.
Description
We were able to get the transcription back. But it was not happening in real-time, there is a latency (of at least 4-5 seconds and sometimes higher based on the length of a phone call) between the audio phone call and seeing the transcription in parallel.
I found this in comments in the sample python code(listen_print_loop function) mentioned above :
The responses passed is a generator that will block until a response
is provided by the server.
Does it mean streaming requests are asynchronous or some other problem that might be causing this latency issue.