Status Update
Comments
hi...@gmail.com <hi...@gmail.com> #2
In AudioRecord.h and in the MediaRecorder.AudioSource, the enum values differ.
In native code (AudioRecord.h), the values are ..
44 enum input_source {
45 DEFAULT_INPUT =-1,
46 MIC_INPUT = 0,
47 VOICE_UPLINK_INPUT = 1,
48 VOICE_DOWNLINK_INPUT = 2,
49 VOICE_CALL_INPUT = 3,
50 NUM_INPUT_SOURCES
51 };
In Java MediaRecorder AudioSource, the values are ..
120 public final class AudioSource {
121 /* Do not change these values without updating their counterparts
122 * in include/media/mediarecorder.h!
123 */
124 private AudioSource() {}
125 public static final int DEFAULT = 0;
126 /** Microphone audio source */
127 public static final int MIC = 1;
128
129 /** Voice call uplink (Tx) audio source */
130 public static final int VOICE_UPLINK = 2;
131
132 /** Voice call downlink (Rx) audio source */
133 public static final int VOICE_DOWNLINK = 3;
134
135 /** Voice call uplink + downlink audio source */
136 public static final int VOICE_CALL = 4;
137 }
Now, if you look at AudioFlinger, any input source, whose value of stream type is >=
NUM_INPUT_SOURCES (i.e., 4), we will get an "invalid stream type". Because of the
mismatch of the enums, the Java API sets the value of VOICE_CALL stream type as 4.
So, the check fails and we get the failure.
Fix:
Set the values of the stream types to be the same in the Java and c++ code.
Hope this helps.
pa...@gmail.com <pa...@gmail.com> #3
Settings only Records Voice Stream from MIC only there is no Such VoiceCall,
VoiceCall Incomming and Outgoing.
I think Google have missed some file to Support it Actual
pr...@gmail.com <pr...@gmail.com> #4
er...@gmail.com <er...@gmail.com> #5
android.media.MediaRecorder.AudioSource.VOICE_UPLINK ;
These two option do not work!
Whatever I set it to VOICE_DOWNLINK,VOICE_UPLINK or VOICE_CALL, the resault is the
same as VOICE_CALL!
Please fix!
Thanks!
he...@gmail.com <he...@gmail.com> #6
business..
yg...@gmail.com <yg...@gmail.com> #7
[Deleted User] <[Deleted User]> #8
he...@gmail.com <he...@gmail.com> #9
er...@gmail.com <er...@gmail.com> #10
this bug presents a great opportunity for competitors to show the inferiority of
Google's support and community help.
he...@gmail.com <he...@gmail.com> #11
appts and also to prove to them they had appointments set. PLSSSSSSS fix!!
rb...@gmail.com <rb...@gmail.com> #12
do...@gmail.com <do...@gmail.com> #13
er...@gmail.com <er...@gmail.com> #14
he...@gmail.com <he...@gmail.com> #15
mi...@gmail.com <mi...@gmail.com> #16
he...@gmail.com <he...@gmail.com> #17
he...@gmail.com <he...@gmail.com> #19
he...@gmail.com <he...@gmail.com> #20
Maybe I must swallow my pride and become a iphone user since I see this as a requirement for a phone
he...@gmail.com <he...@gmail.com> #21
th...@gmail.com <th...@gmail.com> #22
To get this to work the hardware vendors would need to include the correct libraries in there builds.
I think that this is why no googlers did any task on this, but they could at least have said this.
As AUDIO calls wont go directly trough the system (only the notifications) someone would need to write hardware drivers for the corresponding phones.
The audio is directly routed from the GSM chips to the audio in/out chips and to actually get hold of this streams it would need some driver that intercepts this or reroute it trough the phone (rerouting could cause problem with delays but outputing to two different places could be a solution).
My best bet is that some skilled coder (sorry Im not that skilled and dont have the time to digg that deep for it) could write a driver missusing the BT stack (the same as the FM Radio driver on Nexus/Desire does with the FM signal where the audio gets decoded on the chip and sent to the speaker but I dont know exactly if this goes trough the system or if they also bypass android because I havent seen any FM recording app until now (or dont know of one).
he...@gmail.com <he...@gmail.com> #23
/**
* Returns those audio sources supported by the device.
*/
public int[] AudioManager#getSupportedAudioSources()
Not only would this allow developers to gracefully handle devices that don't conform, but it would also highlight to device manufacturers where they are deficient and provides a point of competition between them.
I think this may have been the intention of MediaRecorder#getAudioSourceMax but the contract is not clear whether it is the maximum source supported by the device or just the maximum value supported by the current build of the platform. And in any case it assumes all sources up to any including that source are supported which is a very linear view.
NB AudoManager would eb the right place for this method IMHO because it could be used from any input mechanism eg MediaRecorder, AudioRecord.
he...@gmail.com <he...@gmail.com> #24
th...@gmail.com <th...@gmail.com> #25
This is why I like the idea of adding an explicit API mechanism to determine the functionality. It makes it clear to the device developer what they need to aim for. It makes it clear to any platform testers whther a device is suitable for its target environment/market. And it makes it clear to application developers at runtime whether the device is capable.
ye...@pv.com <ye...@pv.com> #26
ye...@pv.com <ye...@pv.com> #27
So, its not the logic which was wrong but the device itself doesn't support..
Developers, please fix this..
so...@gmail.com <so...@gmail.com> #28
Why we have such options in framework if they don't work on any device?
he...@gmail.com <he...@gmail.com> #29
ex...@gmail.com <ex...@gmail.com> #30
he...@gmail.com <he...@gmail.com> #31
cp...@gmail.com <cp...@gmail.com> #32
mi...@gmail.com <mi...@gmail.com> #33
cp...@gmail.com <cp...@gmail.com> #34
Google please pull out the finger and get this working. Its embarrassing that a company as big as this can not make a basic feature that was offered many years ago by Symbian or even WM to work properly.
co...@gmail.com <co...@gmail.com> #35
You _might_ be able to record entire calls, i.e., incoming and outgoing audio. I can do so on the HTC Incredible. I don't know for sure whether the Desire supports it.
See
mi...@gmail.com <mi...@gmail.com> #36
Just to be sure what application do you use?
And what version of Android? (seems 2.1/2.2 is where the problem is at)
Also i been searching 3hours for an application today and everyone say the same thing, it is only possible to record your own voice.
Check here for some comments:
On Page5 someone tipped on this page actually :)
If anyone owns a Desire or even better Desire HD can you please confirm if
"Total Recall" or "Ultimate Voice Recorder" or any other software can record the in/outgoing calls?
da...@gmail.com <da...@gmail.com> #37
jo...@gmail.com <jo...@gmail.com> #38
it is a necessity and it is urgent!
I have htc desire and have the smae issues I can record the conversation but cannot split the up/downlink stream on the top i tried to mute a stream and all the streams except one (setStreamMute/setStreamSolo) I tried with the volume and all I get is ether
1) have all streams
2) have no streams at all recorded
3) app crashes
I have delved into that for the whole day today and couldn't believe that android can leave it for such a long time unresolved.
I will work on that on a lower level to see where the problem is.
if anybody has a solution please share! :)
he...@gmail.com <he...@gmail.com> #39
Here is the sample code from my application.
fodler = this.getFilesDir().toString();
String fname = "";
try
{
android.media.MediaRecorder mr = new MediaRecorder();
mr.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL);
mr.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mr.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
fname = fodler+ "/aa"+System.currentTimeMillis()+".mp4";
mr.setOutputFile(fname);
mr.prepare();
mr.start();
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////// hold here and make call then release the execution. I tested by debug and add the bread point here.
Thread.sleep(1000);
///////////////////////////////////////////////////////////////////////////////////////////////
mr.stop();
mr.reset();
mr.release();
MediaPlayer player = new MediaPlayer();
FileInputStream fis = new FileInputStream(fname);
FileDescriptor fd = fis.getFD();
player.setDataSource(fd);
player.prepare();
player.start();
}
catch(Exception ee)
{
Log.d(Utils.Tag_Log, ee.toString());
}
Let me know if any problem.
Ali
bi...@gmail.com <bi...@gmail.com> #40
I've also had success with Samsung Galaxy S2 running Android 2.3.3
hi...@gmail.com <hi...@gmail.com> #41
Unfortunately, there are no exceptions thrown when VOICE_CALL, etc. are used but are not supported by the device, and there is no way to check if the device supports them. What generally happens in the case of a non-supporting device is that silence is recorded instead of the desired audio source.
So, I wouldn't count on your app actually working on a wide range of devices if you're using this part of the API.
jo...@gmail.com <jo...@gmail.com> #42
Google please just fix the header files and Java files so we can really see if it works
rd...@gmail.com <rd...@gmail.com> #43
jc...@gmail.com <jc...@gmail.com> #44
If you currently have an older phone that doesn't support it, there's a very low chance that it will be supported in the future. I suggest you just change phones.
mi...@gmail.com <mi...@gmail.com> #45
[Deleted User] <[Deleted User]> #46
mi...@gmail.com <mi...@gmail.com> #47
mi...@gmail.com <mi...@gmail.com> #48
Call recording works on most Xperia devices, but at this time does not work on Samsung Galaxy S2. It's hard to believe how such an important issue can remain unattended to by Google for so long.
co...@gmail.com <co...@gmail.com> #49
da...@gmail.com <da...@gmail.com> #50
co...@gmail.com <co...@gmail.com> #51
[Deleted User] <[Deleted User]> #52
Such discussion is not productive towards fixing this bug.
jo...@gmail.com <jo...@gmail.com> #53
using Audio source MIC only capture mic audio not receiver audio..
anybody to solve this, need help..
mi...@gmail.com <mi...@gmail.com> #54
mi...@gmail.com <mi...@gmail.com> #55
would suffice but I have never seen one for sale.
ut...@gmail.com <ut...@gmail.com> #57
If so, that would be extremely disappointing. Especially, considering that my Palm
Centro does an amazing job of recording calls or just functioning as a voice recorder
in general -- and I've been under the assumption that my Centro is inferior to
Android phones.
aa...@gmail.com <aa...@gmail.com> #58
Let's not be too dramatic, here. If this is indeed a hardware limitation, it was
probably a simple oversight in the design of the Droid. Declaring all Android
devices as inferior is incorrect. The Android API seems to support it, so it's not
an Adroid "inferiority."
It's either,
1. A bug in the Android support (see the above post of the enumeration values
differing)
2. A hardware limitation of current devices,
3. A porting issue of Android to the current devices which isn't allowing the voice
link streams to be used.
mi...@gmail.com <mi...@gmail.com> #59
I hope it is not too far off topic to discuss this, as it would be quite an effective
work-around and would allow me to go to Verizon to get my Droid back - it broke my
heart to return it. I looked over the bluetooth headsets on the page you mentioned
and the only headset with a recording option doesn't appear to have a mic, just
speakers. I had already been looking at this headset and almost bought six of them
when I realized there was no mention of a mic. If the headset did indeed have a mic,
it would be perfect. If you have knowledge of a bluetooth headset that records -and-
has a mic, please let me (and anyone else reading this that might be interested) know.
mo...@yahoo.com <mo...@yahoo.com> #60
These Google People are Ash-oles.
If they don't reply this Thread. I will load Porn Pictures every day in this Thread
every day.
Will Google now pay Attention to this ?????????
dh...@gmail.com <dh...@gmail.com> #61
is so important to you, vote with your dollars, not stupid pranks in a bug tracking
system.
ro...@gtempaccount.com <ro...@gtempaccount.com> #62
you. However, we need to manage our priorities and unfortunately this particular
feature request is not a high priority right now.
We are open to discussions and if you are willing to help get this feature
implemented in the system, please come start a discussion on the appropriate mailing
list/group (see
very important issue with such a feature would be security concerns, please keep this
in mind when doing proposals for APIs and/or implementations.
Please keep this discussion civil.
zo...@gmail.com <zo...@gmail.com> #63
As much as I object comment 63's way of getting Google's attention I think that:
a. The lack of responses from Google to this and other discussions is a real shame.
Please note that responding does not equal resolving. Responding means letting the
users know what is going on and/or what should they expect in the future in regard to
the issue discussed.
b. You/Google (I assume you're responding for Google, please ignore the rest of this
paragraph if I'm wrong about it) don't have a say about the way this discussion is
evolving since you're clearly not part of it. It's just plain wrong to accuse someone
else for not being civil while you're doing just the same by systematically ignoring
all users's input. The only ones (as I see it) who can set standards to this
discussions are the ones who are part of it. As long as you're not a productive part
of it, quit being its cop.
c. All this (the users's whining and aggressiveness) wouldn't have happened if you
just responded. You (again, if you're responding in the name of Google. s/You/Google,
if you're not) are the only ones to blame for the current nature of discussions here.
BTW, other users (like me) are offended by this state only we are unable to respond
in the name of Google and just stop it, are we?
---
@mosltes...@yahoo.com
Please, don't. I'm sure that Google is doing their best behind the scenes. They are
just mute about it (which is very wrong but I think not wrong enough to justify
pornifying a tracker system).
ol...@gmail.com <ol...@gmail.com> #64
problem. Very useful when trying to get phone numbers, confirmation numbers, and
other important business info while a call is in progress. This would be more
business 'friendly' than having to find somewhere to write this info down and
interrupt the caller to repeat the info. I am very interested in the Droid and am
seriously considering replacing our corporate cell phones with the Droid. This would
be a serious insufficiency for a business user if this feature is not available on
this new Smartphone.
he...@gmail.com <he...@gmail.com> #65
Evolved to
35 /* Do not change these values without updating their counterparts
36 * in media/java/android/media/MediaRecorder.java!
37 */
38 enum audio_source {
39 AUDIO_SOURCE_DEFAULT = 0,
40 AUDIO_SOURCE_MIC = 1,
41 AUDIO_SOURCE_VOICE_UPLINK = 2,
42 AUDIO_SOURCE_VOICE_DOWNLINK = 3,
43 AUDIO_SOURCE_VOICE_CALL = 4,
44 AUDIO_SOURCE_CAMCORDER = 5,
45 AUDIO_SOURCE_VOICE_RECOGNITION = 6,
46 AUDIO_SOURCE_MAX = AUDIO_SOURCE_VOICE_RECOGNITION,
47
48 AUDIO_SOURCE_LIST_END // must be last - used to validate audio source type
49 };
But i am Still not sure Whether under lying core can Expose these Call Audio Stream
to Java Classes.
@ RomainGuy@Android.com, digit@google.com, jbq@google.com sop@google.com
If 114 Starred Issue is not Important then whats the Use. I this this Issue is in Top
20 List of Bugs. and Google is not even making any Comment or Progress Though the
Source Code is Modifying.
If Security is the Issue Make this Recording as per Country of SIM Inserted into it.
But that must not be the reason not to implement this Feature. i think there is very
Less effortes are need to Solve this Problem. Google is not Focusing on Customers
Demand rather
jm...@gmail.com <jm...@gmail.com> #66
finding a solution for you to be customer-focused and follow the law at the same
time.
Note that while you may not get as many responses on this issue as for some others,
the call-recording feature is bigger than you think because it is essential for many
business owners. Many people who put their comments in this thread (myself including)
are business owners and our decision of staying away from Android phones till that
issue is resolved should be taken by you with the factor of 10 or higher as we
represent not a single but a bulk purchase prospective customers.
mi...@gmail.com <mi...@gmail.com> #67
interested in listening to its customers and engaging its users in productive dialog,
I hope you wouldn't mind participating further, and perhaps answering a few questions
for us. Dismissing the entire thread as "uncivil" and refusing to participate would
be an outright insult to the majority of the posters, who have been courteous,
respectful and helpful to Google's efforts.
Now, for my questions:
- Why is this not a high priority issue? It is currently No. 30 in the Android issues
list, sorted by number of people who "starred" the issue. Is this not an indication
of the public demand? How exactly does Google prioritize its issues, if you don't
mind my asking?
- You state that security might be a concern. Please elaborate. Even now, any app can
access the voice stream from the microphone. How did you resolve the security
concerns related to that? How would that be different than the security concerns
related to the incoming stream?
- Google has demonstrated that it can address geographically-restricted legal issues
simply by releasing different firmwares for different localities. Case in point:
Droid has Google Maps nav and no multi-touch; with Milestone it's the other way
around. Simple problem - simple solution. No fuss. Why can't this be applied here?
- Who says that this is even a legal issue for Google, even in countries where all-
party consent is required for recording? When has a manufacturer of recording
equipment (or developer of recording software, for that matter) ever been held liable
for an illegal recording performed using its product?
Thank you in advance for your time and for your thoughtful response.
jo...@gmail.com <jo...@gmail.com> #68
I feel your pain of being the target to all the questions in this thread, but since you
are the only one that stuck his head out, here comes another one:
I am still puzzled if the lack of access to the audio signal of phone calls is a legal
issue alone or if it is a hardware limitation of today's handsets. Could you kindly
elaborate on this?
Thanks - Joachim Neumann
he...@gmail.com <he...@gmail.com> #69
HTC can easily Record Calls in both way. and this Radio is Very Very Identical.
This is all Messed in Android Core Level APIs which dont exposes Audio Stream
Properly to Java Classes even though Proper enums is Provided its still buggy.
md...@gmail.com <md...@gmail.com> #70
sign a petition? we need this!
@all: any ideas for a collaborative effort? a webpage? facebook page?
ja...@gmail.com <ja...@gmail.com> #71
google to fix the bug so that we can develop our own call recording app... even if
somebody/country going to sue for call recording they will sue the app developer not
google...
perhaps google team is holding up this an exclusive feature for their nexus phone...:P
ja...@gmail.com <ja...@gmail.com> #72
google to fix the bug so that we can develop our own call recording app... even if
somebody/country going to sue for call recording they will sue the app developer not
google...
perhaps google team is holding up this an exclusive feature for their nexus phone...:P
he...@gmail.com <he...@gmail.com> #73
even in Skype we can Record our Calls. they why not on Android. all Windows HTC phone
in USA allows it.
ju...@gmail.com <ju...@gmail.com> #74
er...@gmail.com <er...@gmail.com> #75
just tested it on HTC G1 successfully. My company (Portable Electronics Ltd) is
building this voice recoding apk with limited resources and will release it for free
when we finish, probably in a few months' time. I will be posting here to get testers
later-on before public release (I believe you won't mind?). (I don't get why all the
complains towards Google here when the API does work..)
ha...@gmail.com <ha...@gmail.com> #76
I may have misunderstood, but I thought there was no public API available. This
makes it hard to distribute in any market except for rooted phones.
Would you mind sharing with me how you are using the call recording API?
Thanks and Regards,
Matt
er...@gmail.com <er...@gmail.com> #77
Sorry, can't help you on that because I don't write the software myself.
All I can say is the public API is available on Android 1.6 onwards, find it.
he...@gmail.com <he...@gmail.com> #78
1.6 R2?
Any Sample Demo
I have the Source Code too but its not Working though
mi...@gmail.com <mi...@gmail.com> #79
href="
guide, using MediaRecorder.AudioSource.VOICE_CALL as the audioSource.
Eric - I'd be happy if you elaborate on how it works - is the sound quality any good?
Does it record silently or does it let the other party know it's being recorded (by
beeping and/or by playing a voice notification along the lines of "you are being
recorded" a la Google Voice)?
mi...@gmail.com <mi...@gmail.com> #80
Here it is again:
he...@gmail.com <he...@gmail.com> #81
It Just Records Sounds from MIC only!
mi...@gmail.com <mi...@gmail.com> #82
assume Google is using it as a placeholder until it is actually implemented. However,
Eric claims it does work, so I hope he will elaborate as I asked him to, and also tells
us exactly what firmware revision he is using, and whether they are using the API as
described in the link I provided.
Eric - is it possible that you just developed yet another app that records the call
from the mic, i.e. only captures both sides when on speakerphone?
mi...@gmail.com <mi...@gmail.com> #83
bug, seeing as there is already an API for obtaining the call stream
(MediaRecorder.AudioSource.VOICE_CALL) but it does not work as expected (apparently
mirroring MediaRecorder.AudioSource.MIC instead).
So the issue type should be changed to "Bug", and the priority should be adjusted
accordingly.
er...@gmail.com <er...@gmail.com> #84
but mine is too loud....regardless of settings. Anyone tried the API on Android 2.0?
Is it fixed there?
jo...@gmail.com <jo...@gmail.com> #85
signal but rather the speaker signal as it is picked up by the phones microphone?
Joachim
ha...@gmail.com <ha...@gmail.com> #86
I agree. This should be a bug rather than an enhancement since it has been in the API
from Level 1. That is a long time to leave a public-facing API hook unimplemented.
jo...@gmail.com <jo...@gmail.com> #87
improve the sound quality *during phone calls*, the phones main CPU needs access to
both microphone signal. If we are lucky, we also get access to the incoming call
signal. Even more advanced would be a hardware design that drops the old fashioned
radio chip altogether. In this case all audio and radio signal processing would
happen in the main CPU (google for VOIP over white space).
Joachim
sh...@gmail.com <sh...@gmail.com> #88
do...@gmail.com <do...@gmail.com> #89
routed through the same RF encoder.
I'm extremely disappointed at how many things I was told the OS could do, but DOESN'T.
[Deleted User] <[Deleted User]> #90
will be an app that will be able to do this feature. I would be using this app every
day since I run a small business and on the road a lot (Don't answer the phone when
driving, by on the road I mean when I'm out of the office). With millions of small
businesses I know it will be a very popular app. It's not a frill to have this
feature, but a necessity to have this functionality for both business and safety.
I have 15 sales people on the road for my company at any given time and I don't allow
any of them to buy blackberries for lack of this feature alone. Luckily this is the
first and only android phone in my organization. I hope it will be the first of many
future phones I buy.
cl...@gmail.com <cl...@gmail.com> #91
md...@gmail.com <md...@gmail.com> #92
he...@gmail.com <he...@gmail.com> #93
BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG
BUG BUG BUG
Make it High Priority
Useless Features like Animated Wall Papers are Introduced in 2.1, and Core Important
Features are Missing I hate android as Open Source Project
even thous Android 2.1 is running development is dont in Shadow and they earn money
from Device and then make it Open Source. is it a Open Source Project
7 Devices uses Android Kernel, DROID, DROID ERIS, Hero CDMA Monent, Click, Samsung
7500, Acer Liquid and all Model is violating Laws by not Releasing Kernel Soruce Codes.
Laws are Murders in Android System. I have to take this to Court of Law. IDK whats
this stupid Engineers are upto. but they are Sued they come on Knees.
zo...@gmail.com <zo...@gmail.com> #94
refusing to respond to their customers.
When you don't respond to customers who get from you some free email service is one
thing (a bad one, granted, but what are you going to do?). When you sell
phones/produce an OS sold in phones and you still don't respond to your customers is
much worse. Seems like Google is suffering from autism (either that or they employ
too much lawyers).
I won't return my phone but if this (google attitude) is not changed by the time I
need to buy another device you can forget about it being a google related one.
he...@gmail.com <he...@gmail.com> #95
Development and making the OS nice. But now i understood Google Implements the Thing
which the Manufacturer or Operator Want. Damn the Customer Attitude.
Palm Pre uses Same Gmail Sync and it have Birthday and Annivarsary in Contact which
sync fine with Gmail. and See Damn Android they dont know what Feature Gmail have and
still missing in Google Sync. Damn it !
ph...@gmail.com <ph...@gmail.com> #96
if it isn't, if you're confused what open source is please visit this
and stop relating android to linux unless it is true open source, it's just a lie and
we aren't being fooled.
di...@gmail.com <di...@gmail.com> #97
Android is open source:
The problem is that many users don't have unlocked phones where they can install
modified builds of the source code. Also, many drivers for phone hardware is still
proprietary, so debugging those may be impossible.
Did we ever establish how the audio was getting routed through the phone? Is there a
way to route the audio through android so it can be recorded?
aa...@gmail.com <aa...@gmail.com> #98
I agree this should be marked as a bug and not enhancement, but, I'm unstarring this
issue because of the immature turn the comments have made.
ph...@gmail.com <ph...@gmail.com> #99
linux/unix on my system that is not "locked"
There is just a logical difference, we only have one piece of hardware and it's
"locked" so we can't install any versions of the software or updates that we want.
Just stating the differences between a true open source project and one limited like
this one, but hey it's a totally new concept (on wireless phones) I'm not trying to
bash it, just trying to say I wish we had more control.
Good work developers :)
dr...@gmail.com <dr...@gmail.com> #100
zo...@gmail.com <zo...@gmail.com> #101
Still, I expect Google Inc. to communicate with it's users and I can't find another
way to ask them to do so. They are just unreachable.
Nevertheless I agree that this line of discussion is not appropriate here, so:
1. Sorry, I'll try to avoid it in the future.
2. I've opened a (immature) bug at
sometimes) interested in bashing/criticizing Google Inc.'s behavior in this regard
can use it and not this one (which causes other people to un-star).
th...@gmail.com <th...@gmail.com> #102
x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value" ?
mi...@gmail.com <mi...@gmail.com> #103
wise marketing decision to enable this feature in the android platform.
That would trully help headset manufacturerd build an iPhone killer. Imagine the droid with such
function...
mo...@gmail.com <mo...@gmail.com> #104
stream shouldn't generate any legal culpability on Google's part, beyond what is
already induced by providing external routing of the inbound stream through the 3.5mm
jack/any bluetooth device that supports the HSP/HFP profile.
I know it is not a practical solution to the concern raised in this thread, but if I
were determined to preserve the inbound and outbound streams in a persistent storage
medium, I could simply use a male-to-male 3.5mm cable to connect the phone to an
audio recorder, then use the 3.5mm output from the recorder to earphones (so I could
monitor the conversation while recording it), and use vRecord or similar on the phone
to capture the outbound stream. After the conversation ended, I could transfer the
outbound capture file from the phone and inbound capture file from the recorder, onto
the computer, and then mix the two streams: the result would be a file containing the
entire conversation.
Granted this would be a pain to do, and is in no way a practical solution--but
AFAICT, the legal ramifications are the same as providing a (functional) API to do
this directly from the phone. Obviously, there are some fuzzy legal areas regarding
inhibition/enablement for breaking local laws, but I think (again, INAL) those could
be ironed out while still providing a working API. Am I missing something?
pi...@gmail.com <pi...@gmail.com> #105
It works with SDK 1.6 but this errors occurs for Android 2.1.
Any ideas ?
W/System.err( 1724): java.io.FileNotFoundException: /data/local/tmp/record.3gpp
W/System.err( 1724): at
org.apache.harmony.luni.platform.OSFileSystem.open(OSFileSystem.java:244)
W/System.err( 1724): at java.io.FileOutputStream.<init>(FileOutputStream.java:97)
W/System.err( 1724): at java.io.FileOutputStream.<init>(FileOutputStream.java:168)
W/System.err( 1724): at java.io.FileOutputStream.<init>(FileOutputStream.java:147)
W/System.err( 1724): at android.media.MediaRecorder.prepare(MediaRecorder.java:460)
W/System.err( 1724): at
com.fmcc.callrecorder.CallRecorder$1.onClick(CallRecorder.java:94)
W/System.err( 1724): at android.view.View.performClick(View.java:2364)
W/System.err( 1724): at android.view.View.onKeyUp(View.java:3985)
W/System.err( 1724): at android.widget.TextView.onKeyUp(TextView.java:4369)
W/System.err( 1724): at android.view.KeyEvent.dispatch(KeyEvent.java:1061)
W/System.err( 1724): at android.view.View.dispatchKeyEvent(View.java:3683)
W/System.err( 1724): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
W/System.err( 1724): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
W/System.err( 1724): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
W/System.err( 1724): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
W/System.err( 1724): at
com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchKeyEvent(PhoneWindow.java:1655)
W/System.err( 1724): at
com.android.internal.policy.impl.PhoneWindow.superDispatchKeyEvent(PhoneWindow.java:1102)
W/System.err( 1724): at android.app.Activity.dispatchKeyEvent(Activity.java:2038)
W/System.err( 1724): at
com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1631)
W/System.err( 1724): at
android.view.ViewRoot.deliverKeyEventToViewHierarchy(ViewRoot.java:2368)
W/System.err( 1724): at android.view.ViewRoot.handleFinishedEvent(ViewRoot.java:2338)
W/System.err( 1724): at android.view.ViewRoot.handleMessage(ViewRoot.java:1641)
W/System.err( 1724): at android.os.Handler.dispatchMessage(Handler.java:99)
W/System.err( 1724): at android.os.Looper.loop(Looper.java:123)
W/System.err( 1724): at android.app.ActivityThread.main(ActivityThread.java:4338)
W/System.err( 1724): at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err( 1724): at java.lang.reflect.Method.invoke(Method.java:521)
W/System.err( 1724): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
W/System.err( 1724): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
W/System.err( 1724): at dalvik.system.NativeStart.main(Native Method)
E/MediaRecorder( 1724): start called in an invalid state: 4
D/AndroidRuntime( 1724): Shutting down VM
W/dalvikvm( 1724): threadid=3: thread exiting with uncaught exception (group=0x4001e170)
E/AndroidRuntime( 1724): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 1724): java.lang.IllegalStateException
E/AndroidRuntime( 1724): at android.media.MediaRecorder.start(Native Method)
E/AndroidRuntime( 1724): at
com.fmcc.callrecorder.CallRecorder$1.onClick(CallRecorder.java:102)
E/AndroidRuntime( 1724): at android.view.View.performClick(View.java:2364)
E/AndroidRuntime( 1724): at android.view.View.onKeyUp(View.java:3985)
E/AndroidRuntime( 1724): at android.widget.TextView.onKeyUp(TextView.java:4369)
E/AndroidRuntime( 1724): at android.view.KeyEvent.dispatch(KeyEvent.java:1061)
E/AndroidRuntime( 1724): at android.view.View.dispatchKeyEvent(View.java:3683)
E/AndroidRuntime( 1724): at
android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
E/AndroidRuntime( 1724): at
android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
E/AndroidRuntime( 1724): at
android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
E/AndroidRuntime( 1724): at
android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:747)
E/AndroidRuntime( 1724): at
com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchKeyEvent(PhoneWindow.java:1655)
E/AndroidRuntime( 1724): at
com.android.internal.policy.impl.PhoneWindow.superDispatchKeyEvent(PhoneWindow.java:1102)
E/AndroidRuntime( 1724): at
android.app.Activity.dispatchKeyEvent(Activity.java:2038)
E/AndroidRuntime( 1724): at
com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1631)
E/AndroidRuntime( 1724): at
android.view.ViewRoot.deliverKeyEventToViewHierarchy(ViewRoot.java:2368)
E/AndroidRuntime( 1724): at
android.view.ViewRoot.handleFinishedEvent(ViewRoot.java:2338)
E/AndroidRuntime( 1724): at
android.view.ViewRoot.handleMessage(ViewRoot.java:1641)
E/AndroidRuntime( 1724): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 1724): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 1724): at
android.app.ActivityThread.main(ActivityThread.java:4338)
E/AndroidRuntime( 1724): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1724): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 1724): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
E/AndroidRuntime( 1724): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
E/AndroidRuntime( 1724): at dalvik.system.NativeStart.main(Native Method)
ho...@gmail.com <ho...@gmail.com> #106
made over the phone. Some states require one party to be aware of the recording (ie,
the recording party), others require all connected parties.
This isn't about spying, it's about the ability to audit business calls, as well as
keep a record of important data which may not be easily recorded while on-the-go.
Please provide this functionality via API.
de...@gmail.com <de...@gmail.com> #107
aware of it.
Please implement this.
dw...@gmail.com <dw...@gmail.com> #108
Best,
david
tw...@gmail.com <tw...@gmail.com> #109
ja...@gmail.com <ja...@gmail.com> #110
(with/without permission) that's not really an issue for the makers of the phone (no
more than the downloading of illegal content is for the makers of say a web-browser).
This would be an exceptionally useful tool to have on my phone and I can't see how the
legal ramifications of what I did with a recording I made are any issue to the Android
dev team.
ni...@gmail.com <ni...@gmail.com> #111
only reason i dont move to the Nexus1
mi...@gmail.com <mi...@gmail.com> #112
call conversations in certain states/countries???
For one, the maker does not get "in trouble" the end-user does and that's only if the
recording is used in the court of law.
Here in Chicago, it's illegal to register a gun, but the CHOICE to buy a gun is there.
Is this the same company that if i pop open a browser and type in Google search "How do
i make a bomb" i get About 51,700,000 results (0.31 seconds)
Where is the logic????
ba...@gmail.com <ba...@gmail.com> #113
Thanks
jo...@gmail.com <jo...@gmail.com> #114
which of those who first implements a real call recorder function like in s60.
Please come before the iPhone so that I do not have to buy an iPhone.
lu...@gmail.com <lu...@gmail.com> #115
issue caused by some code inside Android itself. These 3 commands don't seem to work:
android.media.MediaRecorder.AudioSource.VOICE_CALL ;
android.media.MediaRecorder.AudioSource.VOICE_DOWNLINK ;
android.media.MediaRecorder.AudioSource.VOICE_UPLINK ;
These are the commands needed to run a Call Recorder.
This is a bug. It should be fixed. But the Android team are busy with many things so
they will only take the time to fix it if people show that they will appreciate it.
So we need to vote to fix this bug. If they see that many people are voting and want
this, I'm sure they will pay attention to it.
Go to Android
Go to the bottom of the page.
Vote by starring it (right above the comment box).
Please don't comment unless you can help in fixing it. It will just clutter the
place up. I haven't commented either.
I hope that if we can get 3000 stars, this will be made a top priority by the
Android team.
Get your friends to vote in on this too.
If you own a business, force your employees to vote too. *grin*
Thanks.
tr...@gmail.com <tr...@gmail.com> #116
Of course it's upsetting that the API facility that supports application access to
the incoming audio stream is broken, and that Google apparently has refused to fix
it. It's upsetting because Android phones are expensive and this creates a natural
assumption that basic features will be supported. That comparatively ancient phones
can do basic things like call recording and bluetooth initiated dialing while my
Android phone is fundamentally incapable despite the availability of a broad
community of third party developers is shocking and disappointing, to say the least.
But I think what reflects so poorly upon Google is *not* necessarily their refusal to
fix these defects in their product. One could easily imagine design or production
situations in which the functionality is physically difficult or impractical to
provide, given specific component choices or design decisions that may have been
extremely compelling and understandable for other unrelated reasons. No, the real
problem is Google's disrespectful and insulting refusal to simply *respond* to those
who are naturally expressing frustration about what is (seriously now) a baffling
limitation.
Is this an intractable problem? Are there extenuating circumstances? Was there a
disconnect in the design process that left the hardware platform missing some key
feature that makes it impractical or impossible to fix this defect? Just tell us
what's going on, Google, and though you may get some flack for it up front,
ultimately a lot of this heat will disappear.
[Deleted User] <[Deleted User]> #117
record calls. And I am not at States!!!
I have a Public relations agency and all the day long our customers decribe their
expectations. How I am supposed to overcome them if I can't record their explanatons
and needs.
One way... Sell my Nexus one and buy another phone.
It is a pity that I have given my ex telephone to my nephew...
he...@googlemail.com <he...@googlemail.com> #118
mu...@gmail.com <mu...@gmail.com> #119
I think google will support this feature very soon .
do...@gmail.com <do...@gmail.com> #120
ad...@gmail.com <ad...@gmail.com> #121
when I was treated unfairly by a Chinese bank. Nowadays in China, many companies
(suce as banks, phone service carriers, etc) provide their costomers with services
through phone call, and they will record every conversations between the customer
and the company. The problem is when something goes wrong, or disbute arises, the
company won't let you hear the recording, even in my case, the bank company
presented to the law court, as an evidence, a note loaded with "text formate" of the
recording, in which a lot of messages was missing! They just manipulated the contents
(the conversation), because they could take the advantage of the situation that I
have no recording as an evidence to present.
I have been looking for a good phone with call recording capability, but
unfortunately I bought this Motorola Milestone!!! Here I strongly apeal Google to
fix this issue.
da...@gmail.com <da...@gmail.com> #122
support is there in the Android platform to record calls, and it is reported to be
working on certain handsets.
I've been playing around with trying to find out why call recording isn't working on
the Motorola Droid, and the /system/lib/libaudio.so file seems to be where the error
occurs. Since it is a [I think] proprietary Motorola library specific to their phone,
meaning the source is unavailable, there's not much more I can find out :-\
AudioHardwareMot: AudioMgr Error: Unsupported input path
mr...@gmail.com <mr...@gmail.com> #123
so please drop a line and simply let us know. Also, I think there is a major gap in
people's knowledge of how to report frustration about such issues so I think that this
is not getting as much attention as it should (especially compared to the number of
folks that I know who are angry about this). Is rallying people to post in this forum
the best way to expedite help for those of us who desperately need this function?
ri...@gmail.com <ri...@gmail.com> #124
help you.
li...@googlemail.com <li...@googlemail.com> #125
am...@gmail.com <am...@gmail.com> #126
phone recording. unfrick'nReal. Had i known this 2 months ago i would _not be a new
owner of a Droid (nor have a wife with a new Eris).
Believe me when i say i'm doing what i can to to dissuade other new adopters. geeze
re...@gmail.com <re...@gmail.com> #127
gi...@gmail.com <gi...@gmail.com> #128
su...@gmail.com <su...@gmail.com> #129
on...@gmail.com <on...@gmail.com> #130
sm...@gmail.com <sm...@gmail.com> #131
major function like this is not supported.
br...@gmail.com <br...@gmail.com> #132
9p...@gmail.com <9p...@gmail.com> #133
to go… This is the only thing I miss about my Windows CE based Glofiish M700
ri...@gmail.com <ri...@gmail.com> #134
bo...@gmail.com <bo...@gmail.com> #135
vi...@gmail.com <vi...@gmail.com> #136
Yeah, I'd have to voice this is a neat feature to have.
In most countries I believe it is legal (just often not legally admissible as
evidence - but I don't think that's why most of us want it). And even in the States,
it's only illegal in a few states.
I suspect it might just be laziness, as opposed to any legality issues.
Cheers,
Victor
vi...@gmail.com <vi...@gmail.com> #137
I just noticed this:
Can anybody comment on whether this works for them? It doesn't do the dodgy record
via speakerphone, does it?
(I haven't actually bought my Nexus yet, that's why I can't test it - I'm actually
sitting on the fence until I can make sure that call recording will work - I dont'
want to buy the handset, then find out that the handset will never support it.).
Cheers,
Victor
fa...@gmail.com <fa...@gmail.com> #138
vi...@gmail.com <vi...@gmail.com> #139
I just noticed there's another program, called AirVoice, which is meant to do this:
It seems a lot of these apps don't work for the majority of people *sigh*. Can
anybody know if this is a limitation of the current generation of Android phones, or
an intentional omission by the Google Android team?
Cheers,
Victor
mi...@gmail.com <mi...@gmail.com> #140
OS/browser. I sense a conspiracy here, Google, I suspect, will not fix the call
recorder problem in the hope in migrating users to Google Voice. This would be a
great shame because it means the whole world apart from the United States will miss
out on call recording on their Android devices.
tw...@gmail.com <tw...@gmail.com> #141
they are recording me, i should have the right to record them to defend myself.
vl...@gmail.com <vl...@gmail.com> #142
hardware support. Did anyone already try one of the newer phone, like the droid,
legend, or nexus one? Over a year ago I developed something for the G1, but currently I
don't have the time and focus to install the environment again and try call recording
on the Nexus One, especially when I suspect that someone probably already tried this.
tl...@gmail.com <tl...@gmail.com> #143
is it possible that this simple feature is not available on the Droid. It is easily
available on the iPhone.
mi...@gmail.com <mi...@gmail.com> #144
That seemed strange to me, in light of the fact that this is a VERY active thread and
people have posted dozens of comments during that time.
Then I noticed the following notice at the top of this page:
"Comments by non-members will not trigger notification emails to users who starred
this issue."
Interesting. It does not show up in any of the other Android issues I checked. Some
new type of Google censorship? Way to go, "do no evil" guys!
Anyway, for all of my fellow call recording enthusiasts who have given up on Android,
I would recommend buying Nokia S60 phones (S60v3 or S60v5), running Psiloc's
excellent Voxtrack Personal call recording app. Just go to Psiloc's product page and
make sure the model you intend to buy is compatible.
ja...@gmail.com <ja...@gmail.com> #145
The only thing that is very likely to keep me from buying an adroid os based phone is very likely
to be the lack of a call recording feature that even my wm 6.1-based phone or almost "free"
non-smart phones support.
I am not going to give specific rationale as to why I want a call recording feature since previous
postings have given strong enough business case for a life-saving call recording feature.
Come May, 2010, SKT, a South Korean carrier, will pound the South Korean market with almost
8 adroid models with more in the pipeline. In the absence of a call recording functionality,
Please, don't make me go for HTC's HD2 when I can easily pick up an adroid-based phone if
this "simple" feature is supported.
mi...@gmail.com <mi...@gmail.com> #146
and the reason Google didn't respond to our votes is that they don't want to! Call
recording is totally illegal in some countries and on other it is illegal without
notification of the other party that he is being recorded. That's why the apps for
Symbian and WM have "beebs" during the call, that the other party hears.
Google is a company that loves the freedom of speech (remember the China situation
last month?), but it is also an international company that operates in many
countries and such a function may angry some governments and large companies. This
is the reason why iPhone also doesn't have it... Apple just don't want to be under
fire about this feature, just because of several hundred people that really need
this call recording. They just don't care about us, because we are a very, very...
very little part of their target market of multimedia, games, e-books and so on
shits, that actually sell todays smart-phones to the mass!
vi...@gmail.com <vi...@gmail.com> #147
Mishoboss: You've basically ignored everything else anybody on this thread has said.
It's a valid feature, that more than "a few hundred" people probably want to use. Do
you really think everybody who wants this feature has posted in this forum? Heck, or
even knows about Google Code? Sorry, but you've got some serious sampling bias there,
my friend.
Also, it may be illegal in a couple of states in the US, but guess what, the world's
much bigger than that. Note that we're talking here about recording by one of the
participants in the call, as opposed to wiretapping.
In most of the Western democracies I'm aware of (Australia, Canada, UK, Finland
etc.), it's legal to record the call, for your own use, as long as one of the
participants is aware - and since it's you making the call, that's obviously the
case.
In countries like India, it's prohibited, and only the government is allowed to
record (whenver they want)...lol, but let's not go there. China, well, yeah, you can
pretty much do whatever you want.
Even in the US, only 12 states require notification of both parties (or all of them,
if there are multiple participants), whilst every other state requires only one
party's consent.
It's a useful feature that several people here have helpfully provided valid use
casese for. I suspect it's more a case of laziness, or other features taking
priority, on Googles part. I mean, really, look at the tomfoolery that Google's doing
with China, serving it out of HK? Or that website they created to expose governments
that are invading their citizen's privacy?
(
So I'm sorry, nothing personal, mishoboss, but your points are all pretty empty.
Cheers,
Victor
See:
mi...@gmail.com <mi...@gmail.com> #148
I don't think my points are all empty. Yes, I know the world is not USA (I'm from
Bulgaria ;)), but the large USA companies like Apple and Google always think first
of the USA mobile market and their carriers... But this is another story. The point
is that I really think the call recording is intentionally disallowed. The strange
thing here is that Google actually provides a way of call recording via their Google
Voice app, but that happens on a server and only for outgoing calls via the app.
Call recording is not only an Android issue. In fact this is a very, very old issue
from the first days of Windows Mobile for Smartphone. I always wanted to record my
calls and have a modern smartphone, and that always was a trouble (except in some
Symbian phones I had in the past years). On almost every Windows Mobile phone from
HTC there were a blocking in the firmware for getting the line data directly. Some
good guys in the XDA forums provided a custom hacked ROMs that made possible the
call recording without the stupid speaker turned on. Symbian and Nokia phones were
the only one that provided call recording without any problems, at least in the
first years. Then they decided to embed a beeping sound directly in the Symbian, but
of course there were also pretty guys that hacked it.
iPhone also doesn't have it, and probably never will, even on jailbroken phones.
But, lets get back to Android. The fact is that there were several apps that claimed
they make call recording (with the speaker turned on of course ;)) prior to version
2.0. Could you tell me ONE call recording app that works on Android 2.0 and 2.1?
Google just did their work ;)
So, I'm afraid that we will never see an official Android API for getting the line
stream. Don't get me wrong, this is the most important feature I need on my modern
big-ass, multi-touch, gigahertz, super, mega, 5G, "PHONE"... but I doubt I get it
official.
My hope is some pretty guy from XDA will break it and deliver to us a hacked ROM...
and I hope it will be soon! :)
mm...@gmail.com <mm...@gmail.com> #149
without any beep or any other warning. Further more, one can synthesize digitally any
recording these days, thus any legal use of such technology is very much doubtful.
If the API is provided then it would probably be possible to do voice encryption, and
this is were most governments would step in...
But it is indeed very much useful for personal record keeping.
mi...@gmail.com <mi...@gmail.com> #150
want to make it easy for anyone, because there will be many people that might use this for illegal
purporses... :(
On the earlier Windows Mobile versions Microsoft didn't block the line stream, but the HTC phones did it.
Because I wanted so much to have Windows phone, I end up with one Eten M700 phone, that worked
like a charm on recording my calls. So maybe the problem isn't just Google, but HTC too...
ru...@gmail.com <ru...@gmail.com> #151
android 2.1 works fine on the emulator but the same does not work on motorola
milestone(called as droid in US).I have tried it by setting audio source to
default,mic,voice_uplink,voice_downlink,voice_call..still it doesnot works.Is there
any official announcement regarding this.I need to show it to my client.
hi...@gtempaccount.com <hi...@gtempaccount.com> #152
Symbian & Windows Mobile have call recording & we want to have the same feature on
Android. We're still trying every avenue to make it work
di...@googlemail.com <di...@googlemail.com> #153
my voice to those lobbying google for a change!
Someone said something about the HTC Diamond which was my previous phone and was
incapable of doing it without a speakerphone work around too. The software supported
it alright. Apparently the guys at XDA were saying it was hardware limitation :-/
I hope we're not going to hit that problem with android phones. And selfishly
speaking especially so with the Desire! :-)
di...@googlemail.com <di...@googlemail.com> #154
my voice to those lobbying google for a change!
Someone said something about the HTC Diamond which was my previous phone and was
incapable of doing it without a speakerphone work around too. The software supported
it alright. Apparently the guys at XDA were saying it was hardware limitation :-/
I hope we're not going to hit that problem with android phones. And selfishly
speaking especially so with the Desire! :-)
di...@googlemail.com <di...@googlemail.com> #155
my voice to those lobbying google for a change!
Someone said something about the HTC Diamond which was my previous phone and was
incapable of doing it without a speakerphone work around too. The software supported
it alright. Apparently the guys at XDA were saying it was hardware limitation :-/
I hope we're not going to hit that problem with android phones. And selfishly
speaking especially so with the Desire! :-)
js...@gmail.com <js...@gmail.com> #156
latest) you can run Mvoice software on your phone. When you receive an incoming call
there is a prompt that allows you to record the call or not. The software works
flawlessly. My phone stores about 12 hours of recorded conversations and I just dump
them into my office computer as needed. You can then search by phone number and
retreive what you need to reveiw later. I have used these recordings to my benifit
in several recent lawsuits and several fraudsters may end up in jail eventually
because I was able to verify converstaions that normally would have just been
denied. In todays world you need to document as much as humanly possible. I feel
naked without call redcording software. Perhaps I just need to do business with a
better quality of people but I seem to be a magnate for the crooks.
ry...@gmail.com <ry...@gmail.com> #157
I have successfuly recorded calls by using the HTC voice recorder app while putting
a call on speaker. Not a great solution, but the recording is quite audible when
played back. for better quality recording one could plug speakers into the headset
jack and put them in front of the mic.
This worked ok on my incredible (CDMA version of the desire), but is obviously not
the optimal solution.
ga...@gmail.com <ga...@gmail.com> #158
possible with call recording, I will list a few here "just because":
1) Receive a phone number over an active call using DTMF tones. This should be built
in by default! You're on the phone to someone and they're about to tell you a phone
number, instead of getting a pen or going back and forth from ear to keypad, you just
ask them to key it in. Suck on that one iPhone!
2) Transcribe call. Use speech to text to save a phone call as text or email. Since
there's two channels you could assign both users a name so it looks like a script:
<me> Hello?
<marketeer> Hello, could I interest you in some spam?
<me> No.
3) Built-in programmable answerphone with unlimited offline storage. Why pay to
listen to your voicemail when your phone can act as an answering machine? Send
selected people to answerphone, have custom messages depending on the caller's group,
listen to them while they leave a message like with a real answering machine.
4) Echo chamber. Record, wait for pause, playback. Childish and irritating fun.
5) Lip reader for the deaf. A picture of a mouth which mimics the caller's mouth so
that deaf people can take calls.
6) WiFi call router. Route calls to your computer, include standard phone users in
partyline chats over Skype, MSN, Yahoo or Vent.
7) Remote voice command. Have android apps which can answer the phone and interact
with other devices on your command.
8) Voice changer. Put your friend's call on loudspeaker, but pitch shift him so he
sounds like a girl so all your friends can laugh at him.
9) Interview sync. Record a call in high quality at both ends, using a tone to sync
the start of the conversation, then join the two streams back together again. Useful
for interviews in podcasts.
10) Encrypted calls. Calls with a slight delay and simple encryption, speed up the
sound, break the last second into chunks and swap them around.
jn...@gmail.com <jn...@gmail.com> #159
illegality claim is bogus. It's up to the consumer to comply with laws. This is like
preventing people from speaking English because some country out there bans English
on cell phones.
Google: a call voice recorder is long overdue.
ch...@gmail.com <ch...@gmail.com> #160
lm...@gmail.com <lm...@gmail.com> #161
party software.
jo...@gmail.com <jo...@gmail.com> #162
It's the possibility to encrypt the phone call that prevents this function.
dc...@gmail.com <dc...@gmail.com> #163
without go for iphone as i didn't find any call recording software on the market,
last month i started to search call recording software for android platform i have
found 2 ... then i switch to android, but as of today i given up !!! i changed back
to my vintage k770i because android let me down with at least 2 things :
1. call recording software
2. (may be off topic), the email client stored email on main memory rather than sd,
my remained 90mb memory can not support all my email stored locally as iphone
dc...@gmail.com <dc...@gmail.com> #164
mi...@gmail.com <mi...@gmail.com> #165
what's new?
fu...@gmail.com <fu...@gmail.com> #166
in japan,sometimes happen privacy problem about recording conversation.
(
this problem needs guideline to use.or explanation.
maybe I'll not develop this function.included many problem.
an...@gmail.com <an...@gmail.com> #167
very important legal call. I thought I had it and now I stand here with the risc
being screwed. It is totaly legal here in Sweden to record a call without notify the
other part(s) as long as you participate in it yourself. Same goes for meetings using
dictaphone features or a real dictaphone. You then have the right to use the material
to justify your cause legaly against the part(s).
This is a feature I really need. As of this moment I have to move sim card over to my
old SE K810i in order to make the recordings and I can't continue like that of
course.
And this seem to been a bug for a while now so please fix it! If there is one feature
I need now it is this one!
an...@gmail.com <an...@gmail.com> #168
Mr...@aol.com <Mr...@aol.com> #169
there is never time to write it down...
now I have Palm device that has app capable to automatically record all incoming
outgoing calls (flexible criteria lets me exclude some numbers) and sort/search them
by date time, caller ID. I really live Nexus one and some other Android devices, but
only way for me to switch to Android is to have this capability either built in to
Android or available through the Apps...
I will really appreciate of Google can think of this...
Sincerely, Gene
an...@gmail.com <an...@gmail.com> #170
digging for a few hours, it seems that on the MSM720x devices (think that's the HTC
Dream (T-Mobile G1) and the HTC Magic (myTouch)) the hardware simply doesn't support
routing the audio to the system (linux) processor. It can only be (electrically)
routed to the speaker, headset, handset, or BT device (and I'm pretty sure the BT
device can't feed it back to the system processor.) So, there's no way to get the
digital audio data from the radio into a process. Only way is analog ... the
speakerphone hack. (which is unfortunate, you could do interesting things with a
digital stream besides recording such as DSP)
la...@gmail.com <la...@gmail.com> #171
but now i want to find the recording apps but find nothing it is unbeileveable
even some phone cause you 40USD made in china factory have voice changer and
recorder function but our smart phone have not this function??? what the hell???
br...@gmail.com <br...@gmail.com> #172
info you could forget or couldn't remember - road pass explanation, phone number, new
colleague name, voice of your girlfriend (or mother/child/ anybody) few years ago...
Please, we really need it!
si...@gmail.com <si...@gmail.com> #173
phone calls. I may actually have to return it simply because of this issue. I'm an
engineer and automatic cell phone call recording is important for my job because I
cannot write down important information such as specifications, part numbers, etc
that someone gives to me over the phone while I'm driving. And I can't be constantly
pulling over to the side of the road on major highways mid conversation to write the
stuff down either because that would be dangerous. I have been using automatic
recording for years because I can't be fiddling around with menus or button presses
to start call recording while driving. My cell phone is first and foremost a phone,
and recording is an important feature. I'm wondering why google decided to block
this? I have checked the law and I do not live in any of the states where phone call
recording would be illegal. So they have blocked capability that is perfectly legal
in my state. And even if I were in a state where it was illegal, all I would have to
do is notify the other person that the call is being recorded and it would then be
legal. So really, what's the problem, and when will 2-way recording ability be
returned to android?
ba...@gmail.com <ba...@gmail.com> #174
os...@gmail.com <os...@gmail.com> #175
Please enable call recording, it will make life easier for many Android phone holders
ra...@gmail.com <ra...@gmail.com> #176
Please make recording avb. on +2.1
ji...@gmail.com <ji...@gmail.com> #177
g....@gmail.com <g....@gmail.com> #178
ji...@gmail.com <ji...@gmail.com> #179
"Call recording crippled on #Android - FIX THIS NOW Google!"
ni...@olofsson.cc <ni...@olofsson.cc> #180
FIX THIS NOW Google! :)
Does google care about this at all?
he...@gmail.com <he...@gmail.com> #181
kr...@gmail.com <kr...@gmail.com> #182
Thank You Google!
te...@gmail.com <te...@gmail.com> #183
ag...@gmail.com <ag...@gmail.com> #184
ro...@gmail.com <ro...@gmail.com> #185
I'm going to look at non-droid phones because of this missing important feature.
ro...@gmail.com <ro...@gmail.com> #186
ro...@gmail.com <ro...@gmail.com> #187
ro...@gmail.com <ro...@gmail.com> #188
This is EVIL and I ain't buying it! I will find another OS and phone combo.
I understand why they do this.... By forcing me to use Google Voice, Google has access to the subject matter of my conversations and thus can target marketing toward me. This is something I must accept them doing with my FREE Gmail account (it is quite amazing really) However, when I pay $$$$ for a phone, service and data plans, I expect to be free from such intrusions.
I want the choice!
Can anyone recommend another smart phone / os combo that will allow me to record calls or am I stuck with the old school phones?
Thanks for your help.
at...@gmail.com <at...@gmail.com> #189
Also take into consideration that Apple and RIM as device manufacturers disable it as well. It was just easier for them as they produce OS of their devices to disable this API to avoid such claims.
There is really some passion of device manufacturers to avoid unlimited call recording due to legal issues or corporations demand or security - who knows?
ac...@gmail.com <ac...@gmail.com> #190
I am considering going back to Palm if only to get this feature back.
[Deleted User] <[Deleted User]> #191
at...@gmail.com <at...@gmail.com> #192
It's like claiming Microsoft for Nvidia driver problems with wrong display colors or stripes.
Android starting 1.6 gives necessary API under which actually driver is performing routing.
I read somewhere that in simulator Call Recording apps are working as expected.
er...@gmail.com <er...@gmail.com> #193
Same goes for making a good sync program for Outlook users - they won't do it, because it cuts demand from the GMail group.
What seems like an 'overlooked' feature, I strongly believe is a strategic intentional move.
pr...@gmail.com <pr...@gmail.com> #194
I hope this is just a priority issue to me.
mi...@gmail.com <mi...@gmail.com> #195
ad...@gmail.com <ad...@gmail.com> #196
ds...@gmail.com <ds...@gmail.com> #197
ri...@gmail.com <ri...@gmail.com> #198
w8...@gmail.com <w8...@gmail.com> #199
mi...@gmail.com <mi...@gmail.com> #200
mi...@gmail.com <mi...@gmail.com> #201
lm...@gmail.com <lm...@gmail.com> #202
Google's FroYo released 2010 does not support it. Come on Google, I want to buy android phone but that's stopping me.
la...@gmail.com <la...@gmail.com> #203
TO ALL OF YOU IN NEED OF A CALL RECORDING PHONE
More than a month ago and probably almost a year trying to find a solution for my problem I read this thread, and found that many people was in a desperate need of recording phone calls for business purposes just like me, and (not to screw anybody) Always on the road.. taking addresses, serial numbers, model numbers and many details hard to write when driving.
I been using like many of you Palm Treo with Callrec for many years, which I thought was the best, ever. Since palm decided to go solo without all us… faithful users, changing to a complete different OS without even any compatibility… here I go.
I finally found a solution. Last week I decided to give it a try to the new HTC touch pro 2 with windows mobile 6.5 from sprint. It works really great, doesn’t freeze, screen respond very well to my fingers, big slide keyboard. And somehow ex-palm user friendly. I also, tried 4 different recording applications, but found vito technologies have the best audio quality, and good price. Go to
I recommend buying a 4GB SD card to record all your calls. Then, go straight from you device’s web browser and download both CAB files into the microSD. Install both files and try it. I am absolutely impressed. It works very well.. all in the background recording to your SD card, so you won’t missed anything. Even better …... it records using the hands free Bluetooth , surpriced? I am( I use Blueant Z9) Bought it at radioshack like a year ago but never use it because I couldn’t record calls using my Palm Treo via hands free. But now I can, however, they have a new version (I don’t know if would work) but is worth for a try…here is
Today was my time to share.
Cheers!
mi...@gmail.com <mi...@gmail.com> #204
As I said earlier in this topic, I doubt Google (and/or HTC) to allow call recording. However I think it's time Android to be hacked like they do on Windows to allow call recording. It's Open Source, god damn it...
go...@engidea.com <go...@engidea.com> #205
Have a "read" method to the GSM audio datastream and a "write" method to the GSM audio datastream, end of story.
It is true that you get a lot of processing up to Java but since, finally, java is JIT compiled on Android, performance issues have gone (beside, GSM audio stream is tiny...)
-----------------
Generally speaking I miss the strong typing of Java when developing with Android.
Code is full of "casting" and magic strings instead of objects, I do rather write 10 lines of code more and have my application verified a compile time than at runtime (possibly throwing a class cast exception...)
ha...@gmail.com <ha...@gmail.com> #206
si...@gmail.com <si...@gmail.com> #207
I have recorder with my very very old nokia phone!!!
mi...@gmail.com <mi...@gmail.com> #208
Does somebody tested one of the call recording apps on the new Samsung Galaxy S? I hope they didn't fucked up that too...
xe...@gmail.com <xe...@gmail.com> #209
Plz tell us whether you can fix it!
I knew this bug before I got my first Android Phone about 1 year ago. But I told myself "of course Google will fix it". Google, You disappoint me.
Now I want my Nokia E51 back.
mi...@gmail.com <mi...@gmail.com> #210
I think we have to start a petition about this to HTC/Motorola and so on. They do this for years... it's not just an Android issue, it's Windows Phone too!
mi...@gmail.com <mi...@gmail.com> #211
Samsungs have a number of non-android handsets which can record calls. So I don't certainly blame HTC for not wanting us to record calls as the HTC Hero, under Android 1.6, apparently can and a number of their windows based handsets can also record. If software companies are worried about their product being illegal in certain countries then why not add an additional terms and conditions telling the user not to use the call recording device. Really simple is it not.
Call recording is not illegal in my country, the UK, so why should I be denied this facility just because it might be illegal in another country?
jo...@gmail.com <jo...@gmail.com> #212
1) have a widget some where so that you can start recording at the press of the button (its better than recording all calls)
2) when u want to record something that the other person is saying, go to the widget and start press the record and repeat what the other person is saying so that it gets recorded from ur voice!!
** using HTC evo!
he...@gmail.com <he...@gmail.com> #213
RomainGuy@Android.com,
digit@google.com,
jbq@google.com,
sop@google.com
Google Engineers are Deaf and Dumb. We need to Shake them well.
he...@gmail.com <he...@gmail.com> #214
@jbqueru
@RomainGuy
@etseng
@morrildl
@sanmehat
Lets see for who much time they stay calm
dh...@gmail.com <dh...@gmail.com> #215
ne...@gmail.com <ne...@gmail.com> #216
ba...@gmail.com <ba...@gmail.com> #217
td...@gmail.com <td...@gmail.com> #218
Anyway, this totally isn't a solution, but I modified Sipdroid to allow recording VoIP calls:
Unfortunately VoIP is way too laggy for everyday use.
to...@gmail.com <to...@gmail.com> #219
bb...@gmail.com <bb...@gmail.com> #220
ma...@gmail.com <ma...@gmail.com> #221
It will unlock a large quantity of new apps.
gi...@gmail.com <gi...@gmail.com> #222
pc...@gmail.com <pc...@gmail.com> #223
1) Recording both uplink and downlink voice stream requires the application processor (in my EVO this would be the QSD8650 Snapdragon [1]) having access to baseband processor (Sequans SQ1210 RF[2] combo chip in the EVO) that handles the voice/radio related functions.
2) Although the Android SDK added support for both uplink and downlink recording since API Level 4 (Android 1.6) with the introduction of VOICE_CALL const in MediaRecorder.AudioSource, actually implementing the API and running on any of the Android devices yields no success.
3) Features related to the baseband processor are handled by Android platform's RIL (Radio Interface Layer)[3].
So, instead of waiting on Google to "fix" the issue, since the entire Android platform source is open source, maybe we as the community can implement it. Maybe...
I am an ex-software/firmware developer struggling to get through law school, and would love to have the time to take the crack at it after my patent bar next month. I can't seem to find enough time outside of reading frustratingly dense cases and rules.
Cheers,
Peter
References:
[1]
[2]
[3]
ch...@yahoo.com <ch...@yahoo.com> #224
Luckily I was only -considering- an Android phone when I researched this issue, and I'm not stuck with one.
Sure not buying one now. Looks like the Nokia N8.
ch...@gmail.com <ch...@gmail.com> #225
ch...@yahoo.com <ch...@yahoo.com> #226
ga...@gmail.com <ga...@gmail.com> #227
ja...@gmail.com <ja...@gmail.com> #228
aw...@gmail.com <aw...@gmail.com> #229
ev...@gmail.com <ev...@gmail.com> #230
a....@gmail.com <a....@gmail.com> #231
gr...@gmail.com <gr...@gmail.com> #232
mo...@gmail.com <mo...@gmail.com> #233
In many countries lows are different. Sometimes not so stupid.:D
Make record or not - must be user's choice.
gl...@gmail.com <gl...@gmail.com> #234
ki...@gmail.com <ki...@gmail.com> #235
When will this basic funtion actually "FUNCTION"?
It makes absolutely NO SENSE to not have something so simple and something that has been around for ages on a modern phone... UNLESS... you look at it through the prism of Google advancing it's own interests with GTalk.
Noticed today that now gmail has a phone feature enabled and I would suspect that we will NEVER have this basic function enabled on our phones because Google (do no evil HAAAAAAAA) only cares about advancing their own self interests. HMMMMMMM
dr...@gmail.com <dr...@gmail.com> #236
I think this is a must feature!!!
I consider moving to NOkia and read in some forums that few people did it already
Google Wake up !!!!!
this is a critical application for a PHONE
ch...@gmail.com <ch...@gmail.com> #237
My old N85 and 5630 doing that until now.
Actually i'm only keeping them for this propose.
an...@gmail.com <an...@gmail.com> #238
Man, I'm so waiting for Windows Phone 7
m6...@gmail.com <m6...@gmail.com> #239
ch...@gmail.com <ch...@gmail.com> #240
me...@gmail.com <me...@gmail.com> #241
So my take is this is not an Android Issue. The fact that all comments about the Droid say ot does not work and the comments I read in the Android Market suggest that Motorola did something to the firmware. So try talking to them instead. Unlike google they don't even "claim" to be "open whatever" :)
My Advice - Don't buy a droid. And do research before spending your hard earned cash.
kr...@gmail.com <kr...@gmail.com> #242
gr...@gmail.com <gr...@gmail.com> #243
link:
models:
- Acer Liquid 100
- Droid Eris
- G1
- General Mobile DSTL1
- HTC Evo
- HTC Dream
- HTC Hero
- HTC Legend
- HTC Magic
- HTC Tattoo
- HTC Wildfire
- MyTouch
- Sony Ericsson Xperia X10 / Mini
de...@gmail.com <de...@gmail.com> #244
lo...@gmail.com <lo...@gmail.com> #245
In Ukraine its absolutely legal to record calls, so need the feature to keep my business on track.
je...@gmail.com <je...@gmail.com> #246
pa...@gmail.com <pa...@gmail.com> #247
ic...@googlemail.com <ic...@googlemail.com> #248
PLEASE ### ### ### ### ## ######
## ## # # # # ## ## ## ##
## # # # # ## ## ##
## ### # # # # ## ### ## #####
## ## # # # # ## ## ## ##
## # # # # # ## # ## ##
### ### ### ### ##### ###### FIX IT !!!!
mi...@gmail.com <mi...@gmail.com> #249
I'm now trying to decide between Nokia N8 and E7 as my next phone.
ma...@gmail.com <ma...@gmail.com> #250
io...@gmail.com <io...@gmail.com> #251
gd...@gmail.com <gd...@gmail.com> #252
Maybe i will "upgrade" to a Centro.
en...@gmail.com <en...@gmail.com> #253
tr...@gmail.com <tr...@gmail.com> #254
Do no evil????
en...@gmail.com <en...@gmail.com> #255
//Robin
ch...@gmail.com <ch...@gmail.com> #256
ga...@gmail.com <ga...@gmail.com> #257
an...@gmail.com <an...@gmail.com> #258
cm...@gmail.com <cm...@gmail.com> #259
ra...@gmail.com <ra...@gmail.com> #260
ba...@gmail.com <ba...@gmail.com> #261
jj...@gmail.com <jj...@gmail.com> #262
Had to import it to my country
works like a charm
jj...@gmail.com <jj...@gmail.com> #263
Tattoo runs on 1.6 android
Just shows you that it did work and then Google F**** it up.
sd...@gmail.com <sd...@gmail.com> #264
po...@gmail.com <po...@gmail.com> #265
tc...@gmail.com <tc...@gmail.com> #266
I just reliaze android not support call recorder?!?!?
OMG! This really bad, my sonyerricson c905 can support call recording.
Please MAKE IT ENABLE!
ak...@gmail.com <ak...@gmail.com> #267
Think u start the call recorder app before or after the call...
...it then records the call for you...
...it's NOT intuitive, and NOT easy (especially when driving or something) but it shows the underlying ability is there...just not an easy solution
ma...@gmail.com <ma...@gmail.com> #268
jj...@gmail.com <jj...@gmail.com> #269
As this is ridiculous that we whinge for 18 MONTHS AND NOT EVEN A PEEP OUT OF GOOGLE.
Seems we need to start a google web page to slate this aspect of google
jj...@gmail.com <jj...@gmail.com> #270
Thereafter we can start a page dedicated to alerting professionals of the drawbacks of a non professional operating system
he...@gmail.com <he...@gmail.com> #272
an...@gmail.com <an...@gmail.com> #273
This is also the kind of support you get in the"free" opensource world most of the times.
mo...@gmail.com <mo...@gmail.com> #274
en...@gmail.com <en...@gmail.com> #275
jj...@gmail.com <jj...@gmail.com> #276
Dear Sir
The call recorder issue is now going for some 18 months
Do you think it is possible to address it.
Do we all have to buy nokias to get this facility.
See
-------------------------------------
There are some of us that are professionals that require this facility in order to earn an income.
for example if you are an architect and someone fones you while you are out and gives you a list of changes for his plans - you need to record this.
When you arrive at the office the sd card is pulled handed to the secretary or clerk to update the relevant drawings.
Without this facility this would be impossible to keep the practice up to date.
Does one have to resort to Nokia and WM6.5 devices to get this
It does work on Tattoo and now does not work on version 2.0+
I am sure a lot of professionals require this as well such as accountants, lawyers, architects, engineers etc.
Please advise if your fones are to be relegated to the consumer market and not the professional market so that we can tell the world that this is the case before hundreds more professionals try and buy an OS that is not geared to help their professions.
in the new way of doing business the cell fone is supposed to be a help in doing business and not a hinderance.
I await your reply at your earliest convenience.
Yours faithfully
ha...@gmail.com <ha...@gmail.com> #277
gd...@gmail.com <gd...@gmail.com> #278
Hi guys. This is what you get for using a "free", "alternative" OS, designed and run by sad angry geeks that get a kick out of hating big corporate companies (the irony).
This is also the kind of support you get in the"free" opensource world most of the times.
-----------------------------------------
Please note that neither Palm (WebOS) nor Apple have solved this problem yet either.
Apple is its 4th iteration already and no signals it will ever be.
At least with Google we have a tiny hope... or have we?
tc...@gmail.com <tc...@gmail.com> #279
Since I'm using T68, K750i, c905 and Yari U100 all have facilities voice call recorder.
This is my first time using android phone (Samsung Galaxy S).
Even this phone almost I can say on top high-end for android, but is to funny this function was not present.
di...@gmail.com <di...@gmail.com> #280
a....@gmail.com <a....@gmail.com> #281
lo...@gmail.com <lo...@gmail.com> #282
lo...@gmail.com <lo...@gmail.com> #283
lo...@gmail.com <lo...@gmail.com> #284
BTW...
"To show your interest in seeing a particular issue resolved, you should star the issue. Please do not add comments that say simply "+1" or "me too". The comments of an issue should be helpful to the developer who is working to solve the issue, or to other users who may need to work around it. Every comment entered triggers a notification email to other users, so low-value comments only serve to annoy and distract them."
from
Nice weekend.
sb...@gmail.com <sb...@gmail.com> #285
mi...@gmail.com <mi...@gmail.com> #286
sb...@gmail.com <sb...@gmail.com> #287
ev...@gmail.com <ev...@gmail.com> #288
Since he have no possibility to prove the things that had been said over the phone, he will have to pay almost 4500€ to much.
A call recorder is essential for everyone, when you make important phone calls that involves money (insurance or other forms of telephone sales). If my friend had the choice to do exactly that, he would be 4500€ or 6200$ richer today! Since he would be able to prove that the insurance company had given him other incorrect details during the initial telephone sale of the contract.
sl...@gmail.com <sl...@gmail.com> #289
mi...@gmail.com <mi...@gmail.com> #290
I think the phone manufacturers block this functionality in their custom build ROM's. I hope I get some real answers there about where exactly is the problem of making successful two-way call recording. There are people there in xda-developers forums that hacked Windows Mobile ROMs to allow this functionality on some HTC devices. The last hacked ROM is for HD2.
This is very important to me I will fight to get it to the end!!!
hu...@gmail.com <hu...@gmail.com> #291
I FEEL RAPED.
"DO NO EVIL"?????????????????????????????????
THIS IS NOT ACCEPTABLE!
WHAT CA WE DO?
WHAT ADDITIONAL PRESSURE CA WE APPLY?
HOW CAN WE GET THIS DEEPER INTO THE MASSES?
JOURNALISTS????????????????
WHERE ARE YOU?
DONT YOU NEED TO RECORD YOUR CALLS AS WELL???
THIS HURTS!
THIS MAKES ME MAD!
THIS MAKES ME SAD!
I DO NOT WANT TO GO BACK TO MY PALM BUT I HAVE TO UNTIL THIS IS GIVEN BACK TO US!
THIS IS LIKE GOOGLE NOT ALLOWING CACHING, BOOKMARKING, HISTORY OR MANY OTHER NORMAL AND RELIED UPON ACTIONS WHILE COMPUTING.
ABSURD.
NOT OK.
NEEDS ATTENTION.
TRAVESTY.
CUSSWORD HERE AND HERE AND HERE.
HORRIBLE.
I FEEL LIKE GOOGLE JUST STOLE FROM ME.
FIX THIS NOW.
ANY BOTNETS OUT THERE WILLING TO SPREAD THE WORD?
ANY SPAMMERS OUT THERE WANNA INFORM THE PUBLIC?
FIX THIS GOOGLE. WE ALL KNOW ITS NOT BROKEN AND THAT IT IS SOME POLITICS... COORPORATE OR GOVERNMENT...DOESNT MATTER... GIVE US WHATS OURS... OUR CALLS.
sb...@gmail.com <sb...@gmail.com> #292
Never thought that i would be doing this inmylife time ????
At least they got voice recording
]
mi...@gmail.com <mi...@gmail.com> #293
-----------------------
The voice streams were handled by the baseband processor, it's that the baseband firmware aren't setup to offer the streams to the application processor that's limiting the ability to truly record a call. The Android system long has the API implemented, but it can do nothing in this case.
Since the baseband firmware is close sourced and available in binary only, I doubt if the brilliant hackers here can do anything about this.
So, get a Galaxy S (the true one, not even those US variants) if you really want this feature.
-----------------------
I will copy my answer to this here too:
-----------------------
Thanks for the reply. So, the bad guy is the baseband processor. iPhone guys hack the baseband processor of the iPhone to unlock it for different carriers. So, I guess it's doable to hack the firmware for two-way recording too.
I read here in XDA Devs that someone found a "cure" for HD2 very easily, just by editing the registry -
HD2 uses the Qualcomm’s Snapdragon QSD8250 processor with built-in baseband processor. The same is used by HTC Desire, HTC Dragon, HTC Mozart, Nexus One, Dell Streak, SE Xperia X10 and many more.
So, why with HD2 is so easily, but with Nexus is not? What is the difference when they use the same CPU with the same baseband processor built-in? Is the baseband firmware different for Android OS and Windows Mobile? If so, how they run Android on HD2 and the cellular is working?
Just my thoughts
-----------------------
So, I think Google is not the bad guy here. Bad guys are the phone manufacturers. Obviously they are afraid to allow access to the baseband streams.
However the korean's Galaxy S seems to allow this and offer call recording out of the box. I would like to ask anyone with a Galaxy S to try some of the call recording apps in the Market and tell us whether they are working or not (without speaker turned on...)?
he...@gmail.com <he...@gmail.com> #294
They Are Arrogant
They Waste time in Stupid Thing
They think This is not Required
They think all 1200 People Started this issue is MAD
They think if Apple iPhone dont have this why sud android
Google Engineers are just NUT
xb...@gmail.com <xb...@gmail.com> #295
I dont have any helpful input or useful information but PLEASE FIX THIS SHIT!
el...@hotmail.com <el...@hotmail.com> #296
mi...@gmail.com <mi...@gmail.com> #298
@ elite223@hotmail.com - it's up to you. I bet you will discover how important is this once you have to write some very important data on paper during phone call... and you don't have a paper near you! I have 2 or 3 situations in my life when a recorded call saved my ass... literally!
Here we don't discuss why the heck we need it or is it legal in some US states... we discuss how can we have it in our precious Android phones!
SO, IS THERE ANYONE WITH A SAMSUNG GALAXY S? PLEASE TEST SOME OF THE CALL RECORDING APPS ON THE MARKET!
pe...@gmail.com <pe...@gmail.com> #299
COME ON!
ba...@gmail.com <ba...@gmail.com> #300
Cool, thanks . Have fun with the hosting
<a href="
ba...@gmail.com <ba...@gmail.com> #301
Cool, thanks . Have fun with the hosting....
<a href="
ne...@gmail.com <ne...@gmail.com> #302
ne...@gmail.com <ne...@gmail.com> #303
==========
[url=
vi...@gmail.com <vi...@gmail.com> #304
Google appears to be lacking somewhat in the support/customer service department...lol (I think it's a nerd/geek thing, engineers never are gifted at these things)
Anyhow, somebody's developed a app that seems to actually record from the line (as opposed to the speaker):
However, it uses some obscure HTC driver, and only works on the HTC Hero for now. However, it's open source, so we might perhaps be able to look at porting it to other handsets.
Cheers,
Victor
bu...@gmail.com <bu...@gmail.com> #305
It appears that this issue was opened 18 months ago, so clearly all this whining and posting in all caps doesn't actually help. The only way to get change is to vote with your wallet - the manufacturers will produce what the customers will pay for.
So, which phones (even older ones) support this essential feature?
gd...@gmail.com <gd...@gmail.com> #306
I got a Centro and it does support it. The application I use is mVoice from
I am not getting any android until this is fixed.
da...@gmail.com <da...@gmail.com> #307
da...@gmail.com <da...@gmail.com> #308
It's very stupid to disable call recording.
Whenever I call governmental offices, CRM part of business organisations, they say "We record this conversation." Then, why not for me? I should have a mean to record the conversation, too. Google is very silly.
ve...@gmail.com <ve...@gmail.com> #309
ve...@gmail.com <ve...@gmail.com> #310
ve...@gmail.com <ve...@gmail.com> #311
just check with laws in your state
Check out these free/trial apps :
Record My Call
RecordCall
Total recall call recorder TRIAL 14 days
All Call recorder
AndRecorder
Call recorder
Call Recorder
Note : File names are taken from Android Market and are placed one per line and will be exact in market so search with same keyword . There is not priority , just check out and use the one you like
ki...@gmail.com <ki...@gmail.com> #312
Hey, clever boy! Just check whether or not your apps can record conversation from the line not from mic?
a....@gmail.com <a....@gmail.com> #313
Back to low-quality mic recorders it is.
Why is this (typically standard) feature of telephones absent?
for those not reading closely- the apps available all record from your phone's end- that is, the noises coming out of your phone's call speaker are recorded by the call mic. This often means echo and feedback, low quality / low volume recordings, etc. and frankly I don't see any reason why google voice can't record on my phone when it can on my computer.
33...@gmail.com <33...@gmail.com> #314
ur...@gmail.com <ur...@gmail.com> #315
I also assume that we should NOT say it but we do love Android
This is why we fight to get the recording app since it is such a base important app.
The only reason we are talking here is because of this love other wise we will go elsewhere. Right?
My assumption is that since the recording app is so important (it is). We will get it sooner or later we will find a way.
I assume that Goggle can help even secretly using forum or other method to provide the trick for developers or maybe simple users.
Just do it...
da...@gmail.com <da...@gmail.com> #316
he...@gmail.com <he...@gmail.com> #317
mi...@gmail.com <mi...@gmail.com> #318
mi...@gmail.com <mi...@gmail.com> #319
-------------------------
SO, PEOPLE, IT WORKS!!!
-------------------------
Just buy yourself Samsung Galaxy S :D
Here is the forum topic in XDA-DEVS:
co...@gmail.com <co...@gmail.com> #320
Easily available on the iPhone? Really? The iPhone has no call recording capability WITHOUT a 3rd party vendor involved. Yes, call recording is available but only on a subscription with a 3rd party routing your calls through their server and recording your conversations at a remote site. This service is fairly expensive and only available on jail broken phones and only available in the U.S..
ry...@gmail.com <ry...@gmail.com> #321
gi...@gmail.com <gi...@gmail.com> #322
gi...@gmail.com <gi...@gmail.com> #323
mi...@gmail.com <mi...@gmail.com> #324
By now the only proven solution is called Samsung Galaxy S. Samsung use own-made SoC that uses another baseband processor than QSD8250 and is capable of doing call records via 3-rd party softwares. Let's just hope the new (rumored) Samsung Nexus S be capable too :)
kk...@gmail.com <kk...@gmail.com> #325
mishoboss -> frm xda-developers thread on 12th November 2010, 09:49 AM
So, it works! This is really great news! To be honest I was a little skeptic. I'm going to buy myself one Galaxy next week!
++++
So mishoboss, did you get an SGS i9000 yet?
If you have, pls share details of your experience. :)
I've been following your diligent research for an Android phone w/ a true Call Recorder that works from the line, & not just the speaker.
It seems your search has led you to the Samsung i9000 Galaxy S.
So I'm anxious to hear what your experience is when you purchased, & which specific model/firmware & Android OS version you purchased, and then if/how you got Call Recording to work?
Please share your experience, your posts here on Google Code as well as on xda-developers have been most appreciated.
Looking forward to your next post.
Much Thanks!
I'm hoping that since the new Samsung "Tab" is also an extension or part of the Galaxy S product line, that your (hopefully) success w/ Call Recording on the SGS i9000 will apply to the "Tab" also?
mi...@gmail.com <mi...@gmail.com> #326
I'm really happy my researches helped solving where is the real problem. Thank you for taking all the useful conversations and putting them into one file. It's more easy for everybody who has interest on this.
Unfortunately I didn't buy myself i9000 so far. There is a financial crisis, you know ;) And I don't like to subscribe a new two year contract with any carrier. However a friend of mine with Galaxy has made some tests with various 3-rd party softwares. Some worked, some not. However the problem is in the call-recording apps, not the hardware or Android OS. In general it works. I'm going to do a serious apps research once I get my own Galaxy (I hope to be soon).
About the Samsung Galaxy Tab - I think it uses the same SoC as i9000. It's a Cortex A8 on 1Ghz, the same specs as i9000. So the chances are really good the SoC would be the same.
dm...@gmail.com <dm...@gmail.com> #327
Please, leave your comments!
fa...@gmail.com <fa...@gmail.com> #328
ba...@gmail.com <ba...@gmail.com> #329
Workaround I have: ask your phone to redirect audio to PC via Bluetooth and record the call on PC (yes, I know you need a PC to record... but at least you can get good quality).
fh...@gmail.com <fh...@gmail.com> #330
c4...@gmail.com <c4...@gmail.com> #331
mi...@gmail.com <mi...@gmail.com> #332
They claim the app will work on all Android phones since v2.0. Either they didn't test it with HTC's and Droid, or they use loudspeaker like every other solution on the Market. The release date was 1st December 2010, but there's still no such app... ;)
Anybody with Desire HD? If there's any, please make some tests with some call recording apps. There is a (small) chance they could work, since Desire HD uses new generation SoC from Qualcomm. So, please TEST!
j....@gmail.com <j....@gmail.com> #333
I know you are probably trolling but I'll bite in the case someone take you seriously.
If Google actually care about call recording then why doesn't the Android API allow for call recording on their own Nexus One phone? Or are you saying Nexus One is not Google's own phone? Even if Google hired some other company to manufacture the phone, it is still Google's fault it doesn't work. They didn't care that the phone they released with their own brand didn't follow their own implementation of Android.
mi...@gmail.com <mi...@gmail.com> #334
I'll answer you. There are several reasons for that I think:
1. It's not the Android API. The API is there since Android 1.6.
2. I bet Google didn't tested this. Nexus was one of the first Android devices (even not the first one) with Snapdragon SoCs, so there wasn't yet any user response for that issue.
3. By the time of Nexus One, there wasn't any other Soc out there that is capable of 1GHz frequency. Now you have Hummingbird, Tegra and some others. So, even if they knew this issue, they didn't have any other option.
4. The phone is made by HTC and they are something like married to Qualcomm.
5. I don't think Google, HTC or Qualcomm care about this issue. It's actually better for all them NOT to offer it, so they could sell the devices even in China ;)
j....@gmail.com <j....@gmail.com> #335
Thanks for the answers. That might explain why Google didn't make sure the Nexus One had this feature. Still, I don't see why they can't simply make or bribe Qualcomm to implement this and push a radio/baseband chip firmware update if they wanted to. I don't think they ever will though especially not when Nexus S is to be released soon.
The call recording ability will definitely be a deciding factor for the next phone I buy. Right now the only options seem to be the Galaxy S or using rvoix with a rooted HTC Hero.
Link to rvoix if anyone is interested:
mi...@gmail.com <mi...@gmail.com> #336
Samsung Nexus S uses the same Hummingbird S5PC110 SoC as Galaxy S. So, I'm almost sure it will be capable of two-way call recording :)
jo...@gmail.com <jo...@gmail.com> #337
ms...@gmail.com <ms...@gmail.com> #338
Google and the phone manufacturers obviously do not care about this.
If you want to fix this, just give your Android phone to your kiddies and get a real phone.
a1...@gmail.com <a1...@gmail.com> #339
12-21 17:02:02.597: DEBUG/TIOMX_CORE(1007): Found component OMX.TI.AMR.encode with refCount 0
12-21 17:02:02.597: DEBUG/OMX_NBAMRENC(1007): OMX_ComponentInit():216 Entering OMX_ComponentInit
12-21 17:02:02.597: ERROR/PVOMXEncNode(1007): PVMFOMXEncNode-Audio_AMRNB::DoPrepare(): Got Component OMX.TI.AMR.encode handle
12-21 17:02:02.613: ERROR/AudioHardwareMot(1007): AudioMgr Error:AudioStreamInMot::openFd() failed: call connected
12-21 17:02:02.613: ERROR/AudioRecord(1007): Could not get audio input for record source 1
12-21 17:02:02.613: ERROR/AuthorDriver(1007): Command 14 completed with error -1
12-21 17:02:02.613: ERROR/MediaRecorder(4441): start failed: -1
Then there was a Java runtime exception trace as you might expect. So something is preventing apps from opening the microphone when a call is taking place. I am suspecting the device driver for the phone mike does a check to see if a call is in progress and fails the open if it is. Not sure who writes these drivers, but I bet it is out of Google's hands. Most probably it is the phone manufacturers or the carriers.
[Deleted User] <[Deleted User]> #340
Thanks
y4...@gmail.com <y4...@gmail.com> #341
This is 2011 Google, my phone from 1999 could do in call recording.
y4...@gmail.com <y4...@gmail.com> #342
bi...@gmail.com <bi...@gmail.com> #343
er...@gmail.com <er...@gmail.com> #344
dm...@gmail.com <dm...@gmail.com> #345
We should be very grateful if you would kindly consider an issue regarding all QSD8x50-based devices manufactured by your Company.
Namely, such devices as Desire or Desire HD are not currently capable of recording phone calls from the line. To be precise, there is no support of "SND" RPC inter-CPU exchange (function 0x30000002) in radio modules installed on the said devices. On the other hand, we do know that the Snapdragon chipset itself supports this feature (it is readily demonstrated on HTC HD2 operating under WCE). This was also supported on various MSM72xxx devices which used to have a "vocpcm" driver developed by HTC.
We are asking if the pertinent RPC server might be possibly re-enabled in your radio ROMs. We should be able to build them ourselves, though the provision of proprietary Qualcomm code and/or documentation is, of course, out of question.
This would greatly enhance the functionality of your devices making them much more powerful, and unreachable for your competitors. There is a team of qualified programmers who would be willing to write a kernel driver and user-space software in that case.
Of course, we are aware of possible legal matters in certain countries but, to the best of our knowledge, Android is an open source system, and nobody prevents the end user to take the decision at his/her own discretion.
Sincerely yours,
ma...@gmail.com <ma...@gmail.com> #346
y4...@gmail.com <y4...@gmail.com> #347
ya...@gmail.com <ya...@gmail.com> #348
ja...@gmail.com <ja...@gmail.com> #349
ja...@gmail.com <ja...@gmail.com> #350
bb...@gmail.com <bb...@gmail.com> #351
y4...@gmail.com <y4...@gmail.com> #352
bo...@gmail.com <bo...@gmail.com> #353
ja...@gmail.com <ja...@gmail.com> #354
bo...@gmail.com <bo...@gmail.com> #355
PS: Sorry if this has already been answered, i really don't see it.
dr...@gmail.com <dr...@gmail.com> #356
This has become a BIG ISSUE of top priority. They just cannot remove one of the important basic already feature/functionality of phones with strong justification.
We all now know that google has done the mistake of encouraging hardware/chip manufacturers to disable the exiting call record functionality.
They should blacklist the hardware vendors/chip manufacturers who doesnot adhere to basic phone features like calling, call recording, etc.
They need listen to customers requests and fix this issue at the earliest.
m4...@gmail.com <m4...@gmail.com> #357
seems that lack of call recording is main reason that i will have stick again to nokia with symbian in this year upgrade
what is the point of developing another system for smartphones if they not even trying to cover main features before adding some useless functionality?
angry birds won't make everyone forget what they actually need from their phone ;)
le...@gmail.com <le...@gmail.com> #358
I am really big fan of google but 2 years without response?
tu...@gmail.com <tu...@gmail.com> #359
to...@gmail.com <to...@gmail.com> #360
togiab@gmail.com
mi...@gmail.com <mi...@gmail.com> #361
ja...@gmail.com <ja...@gmail.com> #362
ja...@gtempaccount.com <ja...@gtempaccount.com> #363
If it were an issue of privacy, Google could implement the 'call is being recorded' dialog that both parties hear, like such with Google Voice.
This is a major issue for me. I need to record all my calls. I do reporting for a small town news site. The people that will be recorded will be advised of the recording process before it begins and during. If I could record calls natively, in-phone, I could post the conversations with my text pieces for all my stories, along with the other involved media.
There are so many typical, productive, and legal uses for this feature. I am astonished that Google isn't on top of this.
to...@gmail.com <to...@gmail.com> #364
...stupid smart phones!!!
oh...@gmail.com <oh...@gmail.com> #365
i bought a smart phone because i needed a recorder!
what a disappointment!!! i'll switch to iPhone and that's it!
Google should be ashamed!
y4...@gmail.com <y4...@gmail.com> #366
mo...@gmail.com <mo...@gmail.com> #367
ta...@gmail.com <ta...@gmail.com> #368
je...@gmail.com <je...@gmail.com> #369
bu...@gmail.com <bu...@gmail.com> #370
Call recording is possible with hack. Perfect quality with total recorder 1.6.5. Read here
ma...@gmail.com <ma...@gmail.com> #371
tr...@gmail.com <tr...@gmail.com> #372
tr...@gmail.com <tr...@gmail.com> #373
tr...@gmail.com <tr...@gmail.com> #374
st...@gmail.com <st...@gmail.com> #375
well, i really don't think they do it to sell EVEN in China.. let's take the Motorola Defy, the only firmware which comes with a BUILT-IN 2 ways calls recorder is the China version of Froyo.
Yes, chinese customers has a fully-working call recorder, no need 3rd party, it's built-in.
This also means the lack of the call recorder in the other builds is definitely NOT an hardware issue.
un...@gmail.com <un...@gmail.com> #376
un...@gmail.com <un...@gmail.com> #377
Seems like the trick for motorola defy is done by just 3 files from Chinese Froyo 2.2.1
All European Froyo ROMS 2.2.1 (orange, PL, FIN, UK) comes with no call recording abilities, and none of the recording apps from the market works. And after flashing this 3 files from CN 1.11, all market call recording apps works again.
Annoying BEEP every 10 secconds is STILL THERE!
/system/lib/libaudioflinger.so
/system/lib/libaudiopolicy.so
/system/lib libaudio.so
[Deleted User] <[Deleted User]> #379
[Deleted User] <[Deleted User]> #380
/system/lib/libaudiopolicy.so
/system/lib libaudio.so
it seems to be a hardware-driver problem after all, because this libs are available on htc legend rom for example, but the device can't record from the line (its producing extreme noises/sounds while recording from the line)
un...@gmail.com <un...@gmail.com> #381
Samsung Galaxy S, is in the same scennario, you change those 3 files, and you get 2way recording avaliable for every call recording app of the market
Samsung Galaxy S:
i even tried to use CyanogenMod 6 (milestone port) to my defy, and recording was off but i heard calls with louder volume, I tried others and phone crashd so i stop there and stick with CN 1.11.
Im no dev but it seems to me like in many cases its just a pair of lines of code to get it work, i think its implemented but bugged or for some absurd reason disabled.
dr...@gmail.com <dr...@gmail.com> #382
There is a solution
Tried it - really works!!!!
Galaxy has this feature as well in cooked roms
da...@gmail.com <da...@gmail.com> #383
da...@gmail.com <da...@gmail.com> #384
Witout any disturbing sounds. Recording when i use bluetooth ore handsfree by Wire and the possibility to autorecord phonecalls, thats what i need from this phone.
br...@gmail.com <br...@gmail.com> #385
Where can I find 100% working program to record calls for Motorola XT720?
Is it possible?
un...@gmail.com <un...@gmail.com> #386
After the record started pressing any number will supress the damn beep every 10 sec. Finally!
ne...@gmail.com <ne...@gmail.com> #387
ka...@karlhafer.com <ka...@karlhafer.com> #388
gw...@gmail.com <gw...@gmail.com> #389
dr...@gmail.com <dr...@gmail.com> #390
E/AudioHardwareMot(17090):
E/AudioHardwareMot(17090): AudioMgr Error:AudioStreamInMot::openFd() failed: call connected
E/AudioHardwareMot(17090):
E/AudioHardwareMot(17090): AudioMgr Error:StreamInMot: filehandle invalid
E/AudioFlinger(17090): Error reading audio input
bv...@gmail.com <bv...@gmail.com> #391
wth
yu...@gmail.com <yu...@gmail.com> #392
jb...@gmail.com <jb...@gmail.com> #393
However, this serious flaw makes me regret about the decision.
Especially no actions and no responses even after almost two years discussion.
I heard some applications (need rooted) can do this. like airVoice
Why can't it be possible?
Hope my new phone not be my last android one.
lm...@gmail.com <lm...@gmail.com> #394
Thats a requirement if you want a slice of the business market.
le...@gmail.com <le...@gmail.com> #395
I was really big fan of you but now you make me sick.
Bye.
cr...@gmail.com <cr...@gmail.com> #396
ta...@gmail.com <ta...@gmail.com> #397
I think if Google Android implemented it, then like multi-touch initially, it should be disabled at the kernel level.
ti...@gmail.com <ti...@gmail.com> #398
Hardware is connected as following
IO (Mic / Speaker) <-> Baseband and Application processor
GSM Network <-> Baseband processor
Baseband processor <-> Application processor
so if you make a call the mic / speaker is controlled by the baseband and can´t be accesed directly by the application processor. So they have to implement the stream between baseband and application processor!!!!
li...@gmail.com <li...@gmail.com> #399
WHAT CAN BE DONE?
WHO SHOULD BE CONTACTED... EVERY MINUTE?
WHAT NEWS/POPULAR BLOGGERS/IMPORTANT PEOPLE CAN BRING ATTENTION TO THIS???
WE NEED A SOLUTION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sh...@gmail.com <sh...@gmail.com> #400
ca...@gmail.com <ca...@gmail.com> #401
FIX THIS SHIT NOW IT IS A DEAL BREAKER FOR MANY MANY PEOPLE
nc...@gmail.com <nc...@gmail.com> #402
tp...@gmail.com <tp...@gmail.com> #403
ba...@gmail.com <ba...@gmail.com> #404
lo...@gmail.com <lo...@gmail.com> #405
Rootable
Battery life
Dual Core
CALL RECORDING
BLUETOOTH RECORDING
IT IS THAT IMPORTANT
I would get a Thunderbolt if the battery life wasn't as bad as my 21month old moto droid
er...@gmail.com <er...@gmail.com> #406
WTF!!!
HATE ANDROID! HATE! HATE! HATE!!!
[Deleted User] <[Deleted User]> #407
sn...@gmail.com <sn...@gmail.com> #408
ky...@gmail.com <ky...@gmail.com> #409
ch...@gmail.com <ch...@gmail.com> #410
Warning: Most of the phones supported are older phones. I'm with Sprint and stuck with my year old HTC Hero because it's the only Android phone that Sprint has that supports two way call recording.
fl...@gmail.com <fl...@gmail.com> #411
mm...@axlebender.com <mm...@axlebender.com> #412
I want to ditch my Windows 6.5 Mobile phone (which does call record nicely BTW)
am...@gmail.com <am...@gmail.com> #413
ra...@gmail.com <ra...@gmail.com> #414
xn...@gmail.com <xn...@gmail.com> #415
di...@trujillo.ec <di...@trujillo.ec> #416
th...@gmail.com <th...@gmail.com> #417
I have new Galaxy S2 - 800$!!
y4...@gmail.com <y4...@gmail.com> #418
st...@gmail.com <st...@gmail.com> #419
gf...@gmail.com <gf...@gmail.com> #420
mi...@gmail.com <mi...@gmail.com> #421
Does anyone know if supporting this is google's decision for all new kinds of phones they're going to produce?
go...@gmail.com <go...@gmail.com> #422
Just got my phone a month ago. Hope I don't get anymore surprises.
st...@gmail.com <st...@gmail.com> #423
I am looking to buy another HTC Diamond2 to have as a spare phone because i am not riding the Android platform yet ...
mr...@gmail.com <mr...@gmail.com> #424
or...@gmail.com <or...@gmail.com> #425
my...@gmail.com <my...@gmail.com> #426
From a legality standpoint, as I am sure google's corporate counsel will affirm, including the ability to record a call should create no problem, from a criminal/civil liability standpoint (or any other standpoint) for the phone manufacturer, the OS's copyright owner, the software's copyright owner and so on. I believe this would technically be called a form of vicarious liability (if one of these parties WERE responsible for the acts of the person making the recording)… and no such law exists (that I know of?!!? I don't think anyone knows of such a law).
And the laws on recording, for the person doing the recording is often misunderstood and misinterpreted. And I believe that many people believe a recording is illegal or exposes the person doing the recording to some sort of liability (criminal and/or civil), when really it either does not or such liability is nominal (I am speaking for "involved parties" - like one of the participants in a phone call).
Connecticut, for one, just changed their laws, so now their civil liability for recording a call is, in my opinion, significantly weaker (in fact, given the proper argument, you might be able to assert that the new law voided all civil liability for a well informed and wise defendant.).
Most of the time in this country, recording a call you are a party of is not illegal from a criminal standpoint.
And even federal wiretap laws have exceptions (like, for overt criminal conduct - and that's for recording calls that you aren't a party to at all).
Please bare with me if any of this is in accurate, I didn't check any of this, its just from my memory and its pretty late… So although I should check my work, I haven't. But I usually remember my stuff… and that's what I know off-hand.
Short answer: THERE IS NO REASON TO NOT HAVE THIS FEATURE FROM A LIABILITY STANDPOINT BECAUSE THERE IS NO POSSIBILITY OF LIABILITY FOR ANYONE BUT THE PERSON DOING THE RECORDING.
And that's how it is with many many many things in life - even toothpaste is toxic/dangerous and up to the end use to use it properly.
(They already do have MANY MANY MANY telephone recording devices, just not ones that are IN the OS of an Android.).
MAKE THE FEATURE. Thank you.
mi...@gmail.com <mi...@gmail.com> #427
os...@gmail.com <os...@gmail.com> #428
I had previously updated my desire to gingerbread as I wanted the latest android, I ubderstand that this works with other versions of android too.
1. I "s-off"ed my desire using the revolutionary tool found here...
It was really easy and worked perfectly.
2. I installed this zip file to root my phone (needs s-off)
3. I installed a custom kernel (patched stock 2.6.32) download the kernel here...
4. I installed from the market this app...
I had tried every other app, this is the only one I found working flawlessly. It auto records calls and saves them, it saves them with the callers name/number/date and time. You can also send the file via email in just 2 clicks.
This is a great solution if you are prepared to root and don't mind (possibly) voiding your warranty.
I had never rooted before, it took me about 1 hour (I had to find a few guides on google) I am so glad now.
I well recommend it,
Oliver
If anyone wants any help feel free to email me
ye...@gmail.com <ye...@gmail.com> #429
es...@gmail.com <es...@gmail.com> #430
sp...@gmail.com <sp...@gmail.com> #431
ta...@gmail.com <ta...@gmail.com> #432
lu...@gmail.com <lu...@gmail.com> #433
EVERY cellphone i have ever owned has had the capability of recording BOTH sides of a phone call... some have even had the ability to play a recorded call back so that BOTH parties can hear... how "SMART" is a Smartphone that can NOT???
pr...@gmail.com <pr...@gmail.com> #434
an...@gmail.com <an...@gmail.com> #435
as...@gmail.com <as...@gmail.com> #436
ve...@gmail.com <ve...@gmail.com> #437
I am using CM7 with a xionia kernel on an LG Optimus V and this app works for me superbly! Records incomming and outgoing calls automatically lots of features. Easy playback of saved calls.
ck...@gmail.com <ck...@gmail.com> #438
[Deleted User] <[Deleted User]> #439
I thought Google would have collaborated with 'their partners' in the mean time regarding this isue.
Anyway to get things in perpespective. 2-way callrecording only worked in some WM-devices not all. E.g. it worked both with the onboard recorder and 3rd party software on the Samsung SGH-i900 (omnia 1) with WM6.1 but NOT on the SGH-i8000 (Omnia 2) with WM6.5 or 6.1. I tried this personally since I had both devices and returned the Omnia 2 due to not being able tor ecord calls like its predecessor. The same with HTC devices. It worked on the Diamond and Touch HD but not on the Touch HD2. Though I believe a hack excisted later in its lifecycle to allow 2-way callrecording. Since the HD2 is also able to run Android I wonder if anyone ever tried that (though I think call recording worked only on Android 1.6 on a very few models from SE only). Windows Phone 7 devices are UNABLE tor ecord phonecalls. NONE of the current WP7 and future WP7.5 devices will be able to do this. M$ seem to have a similar silent attidute towards this 'feature' as Google Inc.
So I bought a Nokia S^3 phone which is manually able to do 2-way call-recording using the inbuild recorder-program (just like WM). 3rd party apps allow for automatic recording. Even when the calls are made through a bluetooth headset. Like Nokia and SE featurephones S^3 devices supply a beep every 10-seconds when recording the call to notify participants that the call is being recorded. Currently there are ways to disable this 10-sec beep on both the older S60v5 (who can also do this) and S^3 phones.
So I suggest that anyone who really need this feature either buy a Sony-Ericson or Nokia featurephone or if you really want a 'smartphone' to buy a Nokia S^3 device. The latter option also solves the syncing with Outlook since these Symbian phones STILL can sync with outlook :)
pa...@gmail.com <pa...@gmail.com> #440
!!!!!!!!!!! Google don't be evil, just fix this bug !!!!!!!!!!!!!!!!
ed...@freesoft.org.uk <ed...@freesoft.org.uk> #441
I also warn everyone I know not to buy Android phones, because Google persistently refuses to listen to its customers.
I also encourage everyone to remove their other business from Google, e.g. search, mail etc.
gl...@gmail.com <gl...@gmail.com> #442
gl...@gmail.com <gl...@gmail.com> #443
I just updated my ZTE Blade to Android 2.2, and it now has this function built-in! Record BOTH sides of the conversation WITHOUT using speakerphone! =)
On the plus-side, this is a really cheap phone too. =)
*happy*
yu...@126.com <yu...@126.com> #444
fa...@gmail.com <fa...@gmail.com> #445
mi...@gmail.com <mi...@gmail.com> #446
xe...@gmail.com <xe...@gmail.com> #447
Now, I'm using my Nexus S and even Galaxy Nexus is about to come, this issue is still there!
OK, if you guys don't want to fix it, please give us a reason for not fixing it.
ch...@gmail.com <ch...@gmail.com> #448
I need call recording for my phone.
an...@gmail.com <an...@gmail.com> #449
I was able to accomplish this on an HTC Droid Eris (Verizon variant of HTC Hero), Cyanogen mod, and rVoix. The 'rVoix' is the special software that does the actual call recording, and its website is
I read that this is possible on this forum thread --
**********
Complete listing of phones from the thread:
Models that don't have this function built-in BUT CAN USE a 3rd party app/hack/ROM TO RECORD CALLS in both ways without turning on speakerphone.
HTC Desire; requires root and custom kernel/ROM
HTC HD2; requires custom rom and patch
HTC Hero/DROID ERIS; requires root and custom kernel; with rViox, support thread
HTC Magic (a.k.a. G2); requires root and custom kernel; with rViox, support thread
HTC Sensation; requires custom kernel, ROM and 3rd party app, support thread; Thanks to ccris
HTC Wildfire; requires root and custom kernel; with rViox, support thread
Motorola Defy; requires Chinese 2.2 ROM or Hacks with 3rd Party App or CM7 with 3rd Party App
Samsung i9000 (Galaxy S); with Hacks #1 or #2
Samsung i9100 (Galaxy S II); with 3rd Party App
Sony Ericsson X10, X10 Mini Pro and X8; with Call Recorder by Schass Innab
ZTE Blade (a.k.a. Orange San Francisco); requires custom ROM
**********
There are likely some other phones/software out there with which it is also possible to accomplish 2-way call recording that are not mentioned on the list above. If anybody can RELIABLY CONFIRM other phones with this capability please post on this thread.
I installed Cyanogen on my Droid Eris using the instructions here --
To complete the instructions on that page I had to put my phone in USB debug mode, and use the Android Development Bridge (ADB) to upload the new software onto my phone via USB. I used the ClockwordMod recovery tool rather than Amon_Ra's recovery tool, because the former requires trackball to navigate, which was busted on my HTC Eris. I was using a PC running Ubuntu 11.04 to accomplish all this. I did not have to use any MS Windows for any part of the process.
I tested the rVoix software (currently version 1.06 Build 93 on my phone) by calling Verizon *228, and it recorded alright. It has a settings page where it can be configured for in-call manual call recording control.
Hope this info is useful. If you want to try it I recommend you keep using your old phone for a while until you properly configure your new phone.
oc...@gmail.com <oc...@gmail.com> #450
I recently came across this thread, have you considered using the bluz headset profile to record? I don't know android, it seems you can also dump the hci. If you were to create a loopback device and attach it using the bluez headset profile, or, dump the HCI during a call, you might be able to record. If anything you should be able to copy data coming over the socket. I believe you are looking at L2CAP for this.
Figured I toos this out there see what you folks thought.
bo...@gmail.com <bo...@gmail.com> #451
Maybe my HTC wildfire is not supported?
I will keep using my mic based C-Rec app. It's quality is not bad for my HTC.
tu...@gmail.com <tu...@gmail.com> #452
sh...@gmail.com <sh...@gmail.com> #453
## ## # # # # ## ## ## ##
## # # # # ## ## ##
## ### # # # # ## ### ## #####
## ## # # # # ## ## ## ##
## # # # # # ## # ## ##
### ### ### ### ##### ######
dm...@itadapter.com <dm...@itadapter.com> #454
gr...@gmail.com <gr...@gmail.com> #455
lu...@gmail.com <lu...@gmail.com> #456
jo...@gmail.com <jo...@gmail.com> #457
[Deleted User] <[Deleted User]> #458
The Android OS is really a fantastic software, but as all we know, most of user features desired is installed on demand. Well, like many others "hidden" features, why Gingerbread and other android versions can't have a "hidden" support for call recording? What is illegal here is the fact of some countries don't allow call recording, the act, but not forbidden an device with this feature installed. Some producers don't release the call recording feature, like 2011 line of Xperia from Sony Ericson, and on other hand, we have producer what release like Motorola xt531 with the call recording possible... so, why don't exists a supported way by Google to offer a method to enable call record feature on demand? I hope on ICS this feature be possible for devices without this for now.
Best regards.
aa...@gmail.com <aa...@gmail.com> #459
Wouldn't it be better to merge them and add up the stars?
s....@gmail.com <s....@gmail.com> #460
qu...@gmail.com <qu...@gmail.com> #461
Why not on the device ?
Because you would need exactly the same features that Google is avoiding implementing for call recording. Namely the interception and rerouting of the audio streams, in this case for reprocessing in (en/de)cryption.
I guess Google doesn't want us to have strong encryption.
A pity given the woefully weak state of cellular encryption these days.
qu...@gmail.com <qu...@gmail.com> #462
When I am in the office and making or receiving a call on an "office" line, I want any mobile calls to either be put in my queue (if i have call queuing) of sent directly to my office voicemail.
Yes this can be done with a redirect on the mobile, but for most contracts this means that you have to pay the cost of the second leg of the call.
Why not allow the phone to act as an "over wifi" gsm gateway, allowing calls to be routed into the business pbx ?
Once again you would need access to the raw audio streams, something it seems Google is unprepared to let us have.
qu...@gmail.com <qu...@gmail.com> #463
After all it cannot record calls without "significant user intervention" like any other telephony device.
Furthermore even with the application installed the device cannot break the law, only the user can by turning it on in a part of the world that prohibits such actions.
We have a similar situation in the UK when it comes to speed trap detectors. They are not illegal to own, buy or sell.
You just can't turn them on, that breaks the law.
mi...@gmail.com <mi...@gmail.com> #464
Call recording would be extremely useful in my line of work, so here's an upvote for proper call recording.
Technically we already have it and there are plenty of ways of recording calls besides using apps (microphone, include 3rd person in the call who records, etc) but there is no *good* way of recording calls.
er...@gmail.com <er...@gmail.com> #465
fi...@gmail.com <fi...@gmail.com> #466
Please implement that.
ka...@gmail.com <ka...@gmail.com> #467
ro...@gmail.com <ro...@gmail.com> #468
le...@gmail.com <le...@gmail.com> #469
ul...@gmail.com <ul...@gmail.com> #470
[Deleted User] <[Deleted User]> #471
jh...@gmail.com <jh...@gmail.com> #472
It's June 4th 2012, this problem is more than 3 years old.
After 3 years not only has google not fixed them problem, THEY WONT EVEN COMMENT ON IT OR WHY IT HAS NOT/WILL NOT BE DONE!
I bought my atrix thinking this would be fixed soon. I made my mistake, I will never buy another phone with out insuring it is capable of recording phone calls before I leave the store.
al...@gmail.com <al...@gmail.com> #473
W.T.F is this google?
ma...@gmail.com <ma...@gmail.com> #474
di...@gmail.com <di...@gmail.com> #475
as...@gmail.com <as...@gmail.com> #476
So far every single F****** idea I have had has been killed by bugs/inconsistency. I even started writing my own game engine in C++ because of other bugs... and then ran into shit there too where something as simple as getting the system time was impossible because... where it's supposed to be guaranteed ultra-low latency by the C++ spec... it's so damn slow on my tablet that calling for the system time was actually bringing my framerate down to a crawl.... where an old xperia play had no issue. Honestly I love my phone, but from a developer standpoint this platform is a joke.
cr...@gmail.com <cr...@gmail.com> #477
Droid 2 Global
ma...@ckpatel.com <ma...@ckpatel.com> #479
ga...@gmail.com <ga...@gmail.com> #480
dr...@gmail.com <dr...@gmail.com> #481
co...@gmail.com <co...@gmail.com> #482
ph...@gmail.com <ph...@gmail.com> #483
Exception when I try UPLINK or DOWNLINK.
Already 1 year I cannot believe in that!
je...@gmail.com <je...@gmail.com> #484
In most countries, including most states of USA, it's perfectly legal if at least one party gives his/her consent.
an...@gmail.com <an...@gmail.com> #485
ds...@gmail.com <ds...@gmail.com> #486
Hint for Samsung: If you want me to buy a new device, make sure that call recording is available. Maybe not officially if you are afraid of lawsuits - just leak it as an unsupported patch for rooted users.
ia...@gmail.com <ia...@gmail.com> #487
please
ja...@gmail.com <ja...@gmail.com> #488
hy...@gmail.com <hy...@gmail.com> #489
sa...@gmail.com <sa...@gmail.com> #490
(4.2.2 on Nexus 4)
la...@gmail.com <la...@gmail.com> #491
ma...@gmail.com <ma...@gmail.com> #492
bh...@gmail.com <bh...@gmail.com> #493
in play's app i doesn't get front side person's voice clearly...
al...@southcanara.net <al...@southcanara.net> #494
er...@hulander.se <er...@hulander.se> #495
er...@hulander.se <er...@hulander.se> #496
al...@gmail.com <al...@gmail.com> #497
Please reenable this feature asap.
ia...@gmail.com <ia...@gmail.com> #498
jb...@android.com <jb...@android.com> #499
jb...@android.com <jb...@android.com> #500
jb...@android.com <jb...@android.com> #501
jb...@android.com <jb...@android.com> #502
jb...@android.com <jb...@android.com> #503
en...@google.com <en...@google.com>
vi...@gmail.com <vi...@gmail.com> #504
Please help me to find out this problem.
Below is the source code
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setAudioSamplingRate(8000);
recorder.setAudioEncodingBitRate(12200);
recorder.setOutputFile(audiofile.getAbsolutePath());
try {
recorder.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
recorder.start();
vj...@gmail.com <vj...@gmail.com> #505
If you are interested, please send me an email vjfromgt
os...@gmail.com <os...@gmail.com> #506
ja...@gmail.com <ja...@gmail.com> #507
<a href="
sz...@gmail.com <sz...@gmail.com> #508
ba...@gmail.com <ba...@gmail.com> #509
de...@gmail.com <de...@gmail.com> #510
cr...@gmail.com <cr...@gmail.com> #511
So nice I am enjoying for that post as for u latest version of this Security tool Available on this website <a href="
<a href="
<a href="
le...@gmail.com <le...@gmail.com> #512
le...@gmail.com <le...@gmail.com> #513
Website:
Email: amberlottotemple@yahoo.com
cr...@gmail.com <cr...@gmail.com> #514
ka...@gmail.com <ka...@gmail.com> #515
cl...@gmail.com <cl...@gmail.com> #516
cl...@gmail.com <cl...@gmail.com> #517
sa...@gmail.com <sa...@gmail.com> #518
ij...@gmail.com <ij...@gmail.com> #519
ij...@gmail.com <ij...@gmail.com> #520
lu...@gmail.com <lu...@gmail.com> #521
ch...@gmail.com <ch...@gmail.com> #522
ch...@gmail.com <ch...@gmail.com> #523
ij...@gmail.com <ij...@gmail.com> #525
cl...@gmail.com <cl...@gmail.com> #526
sh...@gmail.com <sh...@gmail.com> #527
AI app that enhances photo quality through advanced restoration algorithms. Its ability to revive and sharpen images, particularly old or low-resolution ones, makes it a popular choice for users seeking to breathe new life into their cherished photos.
ij...@gmail.com <ij...@gmail.com> #528
je...@gmail.com <je...@gmail.com> #529
je...@gmail.com <je...@gmail.com> #530
se...@gmail.com <se...@gmail.com> #531
cl...@gmail.com <cl...@gmail.com> #532
cl...@gmail.com <cl...@gmail.com> #533
IPTV Media in the UK is a cutting-edge platform delivering television content through internet protocols. With a wide array of channels, on-demand services, and interactive features, IPTV Media transforms the television experience, offering flexibility and convenience to viewers across the UK.
te...@gmail.com <te...@gmail.com> #534
Preserve the timeless beauty of your classic car with our Classic Car Restoration Shops near you. Our experts combine expertise and dedication to restore vintage vehicles to their former splendor. Enjoy a seamless restoration process that brings back the elegance and charm of your classic car.
cl...@gmail.com <cl...@gmail.com> #535
Metformin is an oral medication commonly prescribed to manage type 2 diabetes. It belongs to the biguanide class of drugs and helps control blood sugar levels by improving insulin sensitivity and reducing glucose production in the liver. Metformin is often a first-line treatment due to its effectiveness and minimal side effects.
ij...@gmail.com <ij...@gmail.com> #536
ij...@gmail.com <ij...@gmail.com> #537
ij...@gmail.com <ij...@gmail.com> #538
te...@gmail.com <te...@gmail.com> #539
Immerse yourself in automotive nostalgia with our Classic Car Restoration services nearby. Our expert craftsmen combine passion and precision to meticulously restore vintage vehicles, preserving their timeless beauty. Trust us for top-tier restoration services near you, bringing back the original glory of your classic car.
ts...@gmail.com <ts...@gmail.com> #540
na...@gmail.com <na...@gmail.com> #541
na...@gmail.com <na...@gmail.com> #542
National Car Covers are great! They keep my car safe from rain and sun. The cover fits well, and it's sturdy. I'm happy with the purchase!
fl...@gmail.com <fl...@gmail.com> #543
fl...@gmail.com <fl...@gmail.com> #544
sc...@gmail.com <sc...@gmail.com> #545
On Mon, Jan 1, 2024, 12:39 PM <buganizer-system@google.com> wrote:
te...@gmail.com <te...@gmail.com> #546
Enjoy a seamless airport transfer experience with our Atlantic City Airport Car Service. Our reliable and punctual chauffeurs, coupled with well-maintained vehicles, guarantee a stress-free journey to and from the airport. Trust us for efficient and comfortable airport transportation.
ja...@gmail.com <ja...@gmail.com> #547
jl...@gmail.com <jl...@gmail.com> #548
hr...@gmail.com <hr...@gmail.com> #549
ma...@gmail.com <ma...@gmail.com> #550
cl...@gmail.com <cl...@gmail.com> #551
bj...@gmail.com <bj...@gmail.com> #552
FECK OFF WITH THE SPAM YOU BOTS
Also, I have unsubscribe and un-starred, why am I still getting these
emails?
On Tue, 9 Jan 2024 at 07:04, <buganizer-system@google.com> wrote:
me...@gmail.com <me...@gmail.com> #553
cl...@gmail.com <cl...@gmail.com> #554
te...@gmail.com <te...@gmail.com> #555
Elevate your Disney vacation with our premium Car Service from Sanford Airport. Enjoy a luxurious and comfortable ride to the magical world of Disney, where our reliable and professional drivers ensure a stress-free and delightful experience.
me...@gmail.com <me...@gmail.com> #556
Get ready to turn up the excitement as you and your crew cruise in style to the East Coast's premier entertainment destination. Our fully-equipped party bus is the ultimate way to kick off your Atlantic City experience.
fl...@gmail.com <fl...@gmail.com> #557
te...@gmail.com <te...@gmail.com> #558
Elevate your Disney vacation with our premium Car Service from Sanford Airport. Enjoy a luxurious and comfortable ride to the magical world of Disney, where our reliable and professional drivers ensure a stress-free and delightful experience.
hr...@gmail.com <hr...@gmail.com> #559
hr...@gmail.com <hr...@gmail.com> #560
me...@gmail.com <me...@gmail.com> #561
me...@gmail.com <me...@gmail.com> #562
em...@gmail.com <em...@gmail.com> #563
cl...@gmail.com <cl...@gmail.com> #564
Pixwox is a cutting-edge multimedia platform revolutionizing visual content creation. With innovative tools and a user-friendly interface, Pixwox empowers creators to craft stunning images and videos effortlessly, fostering a dynamic community of artistic expression and collaboration.
te...@gmail.com <te...@gmail.com> #565
Discover convenient travel with our dedicated The Village Airport Transportation services. Our professional drivers and reliable services ensure efficient transfers, making your journey to and from the airport stress-free and enjoyable.
hr...@gmail.com <hr...@gmail.com> #566
Er zijn verschillende klachtenregelingen beschikbaar voor zzp'ers in de zorg. Deze regelingen variëren in prijs, inhoud en kwaliteit. Bij het kiezen van een klachtenregeling is het belangrijk om rekening te houden met de volgende factoren:
me...@gmail.com <me...@gmail.com> #567
hr...@gmail.com <hr...@gmail.com> #568
hr...@gmail.com <hr...@gmail.com> #569
te...@gmail.com <te...@gmail.com> #570
Streamline your journey with our Melbourne Airport Shuttle service. Our reliable shuttles and professional drivers ensure efficient and stress-free transportation to and from Melbourne Airport, making your travel experience seamless and convenient.
hr...@gmail.com <hr...@gmail.com> #571
em...@gmail.com <em...@gmail.com> #572
hr...@gmail.com <hr...@gmail.com> #573
em...@gmail.com <em...@gmail.com> #574
em...@gmail.com <em...@gmail.com> #575
ar...@gmail.com <ar...@gmail.com> #576
ha...@gmail.com <ha...@gmail.com> #577
em...@gmail.com <em...@gmail.com> #578
tr...@gmail.com <tr...@gmail.com> #579
em...@gmail.com <em...@gmail.com> #580
em...@gmail.com <em...@gmail.com> #581
em...@gmail.com <em...@gmail.com> #582
Ready to shine with your driver's license? Join Rijschool Driver Company
em...@gmail.com <em...@gmail.com> #583
hr...@gmail.com <hr...@gmail.com> #584
em...@gmail.com <em...@gmail.com> #585
Excitement builds as Google Gemini AI login keys are now available
em...@gmail.com <em...@gmail.com> #586
Brain.fm, available on
The key strength of Brain.fm lies in its ability to provide tailored audio experiences based on individual preferences and needs. The AI algorithms analyze the user's profile and dynamically generate music that aligns with their desired mental state, whether it's concentration during work, relaxation after a long day, or a calming atmosphere for sleep.
hr...@gmail.com <hr...@gmail.com> #587
hr...@gmail.com <hr...@gmail.com> #588
ha...@gmail.com <ha...@gmail.com> #589
d6...@gmail.com <d6...@gmail.com> #590
Streamlined Moving Experience
Experience a seamless transition to your new home or office with the dedicated services of "movers and packers in Sharjah Nahda." These professionals specialize in providing efficient and hassle-free relocation solutions.
Tailored Services for Sharjah Nahda
Understanding the unique dynamics of Sharjah Nahda, movers and packers in the area offer tailored services to cater to diverse moving needs. Whether it's residential or commercial relocation, they adapt their expertise to the specific requirements of this vibrant community.
Expert Packing and Handling
Movers and packers prioritize the safety of your belongings. With expert packing techniques and high-quality materials, they ensure that items are securely packed and handled, minimizing the risk of damage during transportation.
Efficient Logistics and Coordination
Navigating the intricacies of Sharjah Nahda's landscape requires strategic logistics. Movers and packers excel in efficient coordination, optimizing routes and schedules for a smooth and organized moving process.
Relocation with Peace of Mind
Choosing movers and packers in Sharjah Nahda guarantees a stress-free relocation experience, offering a combination of professionalism, meticulous planning, and a commitment to ensuring your move is as smooth as possible.
For more information visit:
ij...@gmail.com <ij...@gmail.com> #591
br...@gmail.com <br...@gmail.com> #592
br...@gmail.com <br...@gmail.com> #593
d6...@gmail.com <d6...@gmail.com> #594
Link building is a fundamental aspect, where acquiring high-quality backlinks from reputable websites can significantly boost a site's credibility in the eyes of search engines. Social media signals also play a vital role, with active and engaging social profiles contributing to a positive online presence. Additionally, off-page SEO services encompass strategies for managing and enhancing the online reputation of a business, which is crucial for building trust among users and search engines alike.
Effective off-page SEO services require a strategic approach that aligns with the latest search engine algorithms and industry trends. By fostering a robust off-page SEO strategy, businesses can broaden their online reach, establish authority in their niche, and ultimately drive organic traffic and conversions to their website.
For more visit:
ro...@gmail.com <ro...@gmail.com> #595
em...@gmail.com <em...@gmail.com> #596
Explore our premium windshield designed explicitly for Honda GL 1800 GOLD WING models at this link. Meticulously crafted from top-quality materials using advanced manufacturing processes, our windshields undergo rigorous testing to ensure durability, clarity, and optimal visibility visit
hr...@gmail.com <hr...@gmail.com> #597
ro...@gmail.com <ro...@gmail.com> #598
gi...@gmail.com <gi...@gmail.com> #599
ta...@gmail.com <ta...@gmail.com> #600
us...@gmail.com <us...@gmail.com> #601
Wow, these happiness suggestions are truly incredible! My preferred strategy is to reduce distractions. The majority of individuals, in my opinion, are unhappy because they are preoccupied with what they do not have.
ro...@gmail.com <ro...@gmail.com> #602
us...@gmail.com <us...@gmail.com> #603
Wow, this advice for happiness is really excellent! Reduced distractions are my preferred approach. My opinion is that the bulk of people are dissatisfied because they are focused on what they do not have. Romans 12:12 advises us to "be happy in hope, patient in tribulation, and faithful in prayer"
cl...@gmail.com <cl...@gmail.com> #604
Click here for dunkin donuts menu price:
gi...@gmail.com <gi...@gmail.com> #605
ro...@gmail.com <ro...@gmail.com> #606
cl...@gmail.com <cl...@gmail.com> #607
ro...@gmail.com <ro...@gmail.com> #608
ro...@gmail.com <ro...@gmail.com> #609
ro...@gmail.com <ro...@gmail.com> #610
cl...@gmail.com <cl...@gmail.com> #611
ro...@gmail.com <ro...@gmail.com> #612
ro...@gmail.com <ro...@gmail.com> #613
ja...@gmail.com <ja...@gmail.com> #614
tr...@gmail.com <tr...@gmail.com> #615
pa...@gmail.com <pa...@gmail.com> #616
ms...@gmail.com <ms...@gmail.com> #617
re...@gmail.com <re...@gmail.com> #618
is a professional who calculates and estimates the total expenses involved in constructing commercial properties such as office buildings, shopping centers, hotels, and industrial facilities. They analyze project plans, materials, labor costs, and other factors to provide accurate estimates for budgeting and planning purposes. Their role is crucial in ensuring that construction projects stay within budget and are financially viable.
cl...@gmail.com <cl...@gmail.com> #619
cl...@gmail.com <cl...@gmail.com> #620
I simply drive from one construction site to another during the day. I get a lot of calls from customers asking about weight, distance, and specifications.
from clients and the site surveyor. Writing down details while driving and holding a phone up to your ear is somewhat difficult.
In order to capture the discussion and provide it, I also use certain Nokia programs that let me to record calls while they are being made or taken.mp3 file to my design team so they can improve structural designs even further.
If Android is capable of doing this, it would be a very good idea. I've been using a Nokia for a very long time, and this is really basic. <a href="
my...@gmail.com <my...@gmail.com> #621
For more:
ha...@gmail.com <ha...@gmail.com> #622
ha...@gmail.com <ha...@gmail.com> #623
mu...@gmail.com <mu...@gmail.com> #624
ha...@gmail.com <ha...@gmail.com> #625
ha...@gmail.com <ha...@gmail.com> #626
sa...@gmail.com <sa...@gmail.com> #627
pa...@gmail.com <pa...@gmail.com> #629
<a href="
bo...@gmail.com <bo...@gmail.com> #630
bi...@gmail.com <bi...@gmail.com> #631
da...@gmail.com <da...@gmail.com> #632
For more information, visit
an...@gmail.com <an...@gmail.com> #633
au...@gmail.com <au...@gmail.com> #634
au...@gmail.com <au...@gmail.com> #635
Mounjaro Buy Online for Weight Loss Without Prescription. We offer Mounjaro at an affordable price for individuals worldwide. By purchasing Mounjaro australia through our mounjaro online pharmacy, you may benefit from savings of up to 90%. Kindly proceed to place your order to receive prompt delivery
mo...@gmail.com <mo...@gmail.com> #636
Mounjaro Mexico
Mounjaro Mexico is the latest injectable medication adults love to use for weight loss purposes. it incorporates trizepatide in it to work in combination with human hormones and blood sugar levels to control appetite. Thus, helps to reduce hunger and make you feel full.
um...@gmail.com <um...@gmail.com> #637
Thanks again for bringing up this important issue. Your article sheds light on a real challenge that many of us face in the marketing field.
Best regards,
te...@gmail.com <te...@gmail.com> #638
da...@gmail.com <da...@gmail.com> #639
da...@gmail.com <da...@gmail.com> #640
ja...@gmail.com <ja...@gmail.com> #641
tr...@gmail.com <tr...@gmail.com> #642
tr...@gmail.com <tr...@gmail.com> #643
ja...@gmail.com <ja...@gmail.com> #644
um...@gmail.com <um...@gmail.com> #645
um...@gmail.com <um...@gmail.com> #646
um...@gmail.com <um...@gmail.com> #647
ra...@gmail.com <ra...@gmail.com> #648
hr...@gmail.com <hr...@gmail.com> #649
au...@gmail.com <au...@gmail.com> #650
A folklore font generator is a tool or software application that specializes in generating text using fonts inspired by the aesthetic and themes of folklore and mythology. These fonts often evoke a sense of ancient or traditional storytelling, incorporating elements such as ornate flourishes, mystical symbols, and rustic letterforms.
it...@gmail.com <it...@gmail.com> #651
mo...@gmail.com <mo...@gmail.com> #652
mo...@gmail.com <mo...@gmail.com> #653
Mounjaro Mexico is the latest injectable medication adults love to use for weight loss purposes. it incorporates trizepatide in it to work in combination with human hormones and blood sugar levels to control appetite. Thus, helps to reduce hunger and make you feel full.
da...@gmail.com <da...@gmail.com> #654
Discover new friendships and fun conversations at TalkWithStranger.com! Our online platform is perfect for meeting new people, sharing interests, and building connections. Whether you're looking for a chat buddy or a new friend, you'll find
mr...@gmail.com <mr...@gmail.com> #655
<a href="
br...@gmail.com <br...@gmail.com> #656
ja...@gmail.com <ja...@gmail.com> #657
ro...@gmail.com <ro...@gmail.com> #658
ja...@gmail.com <ja...@gmail.com> #659
ja...@gmail.com <ja...@gmail.com> #660
te...@gmail.com <te...@gmail.com> #661
hr...@gmail.com <hr...@gmail.com> #662
cl...@gmail.com <cl...@gmail.com> #663
me...@gmail.com <me...@gmail.com> #664
mo...@gmail.com <mo...@gmail.com> #665
Buy Ozempic Online Australia
BuyOzempicOnline.com.au is a website that offers Ozempic (Semaglutide) for weight loss in Australia without requiring a prescription. The site emphasizes affordability and convenience, claiming savings of up to 90% on Ozempic purchases. They ensure safe, discreet packaging and provide fast delivery. The site also offers other insulin products and provides detailed information about packaging, shipping, and ordering processes. <a href="https://buyozempiconline.com.au/">Buy Ozempic Online Australia</a>
es...@gmail.com <es...@gmail.com> #666
fa...@gmail.com <fa...@gmail.com> #667
he...@gmail.com <he...@gmail.com> #668
al...@gmail.com <al...@gmail.com> #669
al...@gmail.com <al...@gmail.com> #670
oz...@gmail.com <oz...@gmail.com> #671
ch...@gmail.com <ch...@gmail.com> #672
Fashion Flare is the brainchild of young entrepreneurs
with intention of providing finest quality clothes to women.
Our store expanded by adding luxury wear and further reaching our
females all over Pakistan and outside Pakistan.
We at Fashion Flare are always one step ahead in providing style and trends our customer in top notch quality.
br...@gmail.com <br...@gmail.com> #673
sh...@gmail.com <sh...@gmail.com> #674
ko...@gmail.com <ko...@gmail.com> #675
br...@gmail.com <br...@gmail.com> #676
br...@gmail.com <br...@gmail.com> #677
bu...@gmail.com <bu...@gmail.com> #680
The website "
we...@gmail.com <we...@gmail.com> #681
mo...@gmail.com <mo...@gmail.com> #682
ay...@gmail.com <ay...@gmail.com> #683
br...@gmail.com <br...@gmail.com> #684
ha...@gmail.com <ha...@gmail.com> #685
wd...@gmail.com <wd...@gmail.com> #686
ri...@gmail.com <ri...@gmail.com> #687
ri...@gmail.com <ri...@gmail.com> #688
ro...@gmail.com <ro...@gmail.com> #689
ro...@gmail.com <ro...@gmail.com> #690
ho...@gmail.com <ho...@gmail.com> #691
ro...@gmail.com <ro...@gmail.com> #692
ay...@gmail.com <ay...@gmail.com> #693
Google has limited automatic call recording features on Android due to privacy concerns and regulations in various regions. However, third-party apps and solutions offer call recording functionality in jurisdictions where it's allowed. As a marketing executive, being able to capture this information efficiently while on the go would greatly enhance your productivity.
We encourage you to check the current Google Play Store for compliant apps that support call recording and keep an eye on potential API changes in future Android updates. You can learn more about the legal aspects of call recording across different countries here. Hopefully, Google will consider expanding this feature in a way that aligns with global regulations.
Thank you again for your thoughtful feedback!
mi...@gmail.com <mi...@gmail.com> #694
Looking for ways to improve your smartphone’s performancehttps://fixmyspeakervoice.com/ and unlock new features? Our platform offers expert solutions to fix common phone issues and provide custom app modifications. Whether you're dealing with muffled speakers or want to enhance your app
mi...@gmail.com <mi...@gmail.com> #695
Whether you're dealing with muffled speakers or want to enhance your app experience with exclusive features, we’ve got the tools and resources to help. Elevate your smartphone’s functionality with tech fixes and custom solutions that cater to your needs.
we...@gmail.com <we...@gmail.com> #696
we...@gmail.com <we...@gmail.com> #697
we...@gmail.com <we...@gmail.com> #698
mo...@gmail.com <mo...@gmail.com> #699
mo...@gmail.com <mo...@gmail.com> #700
mo...@gmail.com <mo...@gmail.com> #701
us...@gmail.com <us...@gmail.com> #702
us...@gmail.com <us...@gmail.com> #703
The lack of native support for call recording on Android devices is indeed a hurdle for many in your position. I agree that integrating API support in the SDK for developers could provide much-needed solutions, enabling users to record important calls seamlessly.
For those interested in optimizing their digital experience, check out the Rajasthan SSOID Portal
Let’s hope that Google considers your suggestion soon!
cl...@gmail.com <cl...@gmail.com> #704
cl...@gmail.com <cl...@gmail.com> #705
we...@gmail.com <we...@gmail.com> #706
we...@gmail.com <we...@gmail.com> #707
cl...@gmail.com <cl...@gmail.com> #708
hr...@gmail.com <hr...@gmail.com> #709
hr...@gmail.com <hr...@gmail.com> #710
hr...@gmail.com <hr...@gmail.com> #711
hr...@gmail.com <hr...@gmail.com> #712
hr...@gmail.com <hr...@gmail.com> #713
hr...@gmail.com <hr...@gmail.com> #714
ro...@gmail.com <ro...@gmail.com> #715
fa...@gmail.com <fa...@gmail.com> #716
For years, <a href="https://thechemistonline.co.uk/products/dioralyte-blackcurrant-20-sachets-rapid-rehydration-for-diarrhoea-and-vomiting">Dioralyte</a> has been a trusted name in rehydration, helping people bounce back from dehydration caused by diarrhea or vomiting. Its clinically proven formula ensures fast, effective results when you need them most.
fa...@gmail.com <fa...@gmail.com> #717
For years,
fa...@gmail.com <fa...@gmail.com> #718
As sustainability becomes increasingly important in design,
fa...@gmail.com <fa...@gmail.com> #719
Dust allergies can trigger sneezing, coughing, and irritation, making everyday tasks difficult.
fa...@gmail.com <fa...@gmail.com> #720
fa...@gmail.com <fa...@gmail.com> #721
ls...@gmail.com <ls...@gmail.com> #722
cl...@gmail.com <cl...@gmail.com> #723
cl...@gmail.com <cl...@gmail.com> #724
in...@gmail.com <in...@gmail.com> #725
jo...@gmail.com <jo...@gmail.com> #726
You bring up a valid point about the challenges faced in industries where call recording is essential for reporting and analysis. While it’s true that call recording laws vary by country, having a reliable way to record calls on Android could greatly enhance productivity for many professionals like yourself.
Integrating an API for automatic call recording in Android could help streamline processes for marketing teams, ensuring that critical information is captured without disrupting workflow. It would be great to see Google consider this in future updates, as it could significantly benefit users who need to manage important communications effectively.
ru...@gmail.com <ru...@gmail.com> #727
ru...@gmail.com <ru...@gmail.com> #728
ru...@gmail.com <ru...@gmail.com> #729
ru...@gmail.com <ru...@gmail.com> #730
Alicia Calculadora Divisiones es una calculadora en línea que se especializa en la operación de división. Su diseño intuitivo y amigable facilita la realización de divisiones, desde cálculos básicos hasta divisiones más complejas. Además de ser rápida y fácil de usar, Alicia Calculadora también garantiza resultados precisos, convirtiéndose en una herramienta indispensable para quienes buscan simplificar sus cálculos.
re...@gmail.com <re...@gmail.com> #731
re...@gmail.com <re...@gmail.com> #732
re...@gmail.com <re...@gmail.com> #733
oz...@gmail.com <oz...@gmail.com> #734
oz...@gmail.com <oz...@gmail.com> #735
cl...@gmail.com <cl...@gmail.com> #736
ma...@gmail.com <ma...@gmail.com> #737
WJ Smith Construction Roofers is a trusted roofing company known for their exceptional craftsmanship and reliable service. Whether you're looking to repair, replace, or install a new roof, their experienced team is dedicated to providing top-notch results. They ensure quality work that lasts and offers peace of mind for homeowners. If you're in need of roofing services, visit here
ra...@gmail.com <ra...@gmail.com> #738
ad...@gmail.com <ad...@gmail.com> #739
<a href="
ad...@gmail.com <ad...@gmail.com> #740
Visit:
ip...@gmail.com <ip...@gmail.com> #741
mi...@gmail.com <mi...@gmail.com> #742
cl...@gmail.com <cl...@gmail.com> #743
This bouquet pairs beautifully with greenery or complementary flowers, enhancing its charm and dramatic appeal. Whether used as a centerpiece, a gift, or a decorative addition to any space, a Tiger Lilies bouquet is sure to leave a lasting impression with its vibrant and unique beauty.
mo...@gmail.com <mo...@gmail.com> #744
ra...@gmail.com <ra...@gmail.com> #746
cl...@gmail.com <cl...@gmail.com> #747
One of the most convenient options is the numerous laundromats and dry cleaners scattered throughout the city.
Click here for more info:
mi...@gmail.com <mi...@gmail.com> #748
Visit:
ok...@gmail.com <ok...@gmail.com> #749
cl...@gmail.com <cl...@gmail.com> #750
cl...@gmail.com <cl...@gmail.com> #751
cl...@gmail.com <cl...@gmail.com> #752
cl...@gmail.com <cl...@gmail.com> #753
bi...@gmail.com <bi...@gmail.com> #754
ph...@gmail.com <ph...@gmail.com> #755
wtf, now spam is allowed in this issue tracker? 🤬
cl...@gmail.com <cl...@gmail.com> #756
cl...@gmail.com <cl...@gmail.com> #757
cl...@gmail.com <cl...@gmail.com> #758
ce...@gmail.com <ce...@gmail.com> #763
ce...@gmail.com <ce...@gmail.com> #764
cl...@gmail.com <cl...@gmail.com> #765
sh...@gmail.com <sh...@gmail.com> #766
When working with lumber, precise measurements are essential. One of the key metrics in the woodworking and construction industry is the board foot, a unit of measure that represents the volume of wood. To simplify the calculation process, professionals often rely on a Board Foot Calculator.
Description
Country
I am Marketing Executive and drive a lot and in the middle of road i
receive to much call for reporting and rates feed for the Market, i have no
option other then using Nokia Symbinan Based Automatic Call Recording
software and at the end of the day i listen and write down every thing in
my PC for further Action .
I know its Possible through Android to Automatically Record Phone calls or
Atleast a API Support for Developers in SDK to do so.
Unless untill Call Recording dont come in Android all my Top tier Marketing
Team can not use Android At all.
I think Google Should seriously think about API Support in SDK to Support
Call Recording so my Situation can be Handled easily.
Hetal Patel