Notices


Reply
Thread Tools
Posts: 40 | Thanked: 4 times | Joined on Mar 2012
#4311
Originally Posted by KTy View Post
This trick worked !
and the registration? works? or you use the bluestacks to get de code?
 
Posts: 33 | Thanked: 37 times | Joined on Jul 2012
#4312
Originally Posted by Leinad View Post
What about this?
http://people.csail.mit.edu/hubert/pyaudio/

MIT License and seems to be pretty easy to record audio:

Code:
""" Record a few seconds of audio and save to a WAVE file. """

import pyaudio
import wave
import sys

chunk = 1024
FORMAT = pyaudio.paInt16
CHANNELS = 1
RATE = 44100
RECORD_SECONDS = 5
WAVE_OUTPUT_FILENAME = "output.wav"

p = pyaudio.PyAudio()

stream = p.open(format = FORMAT,
                channels = CHANNELS,
                rate = RATE,
                input = True,
                frames_per_buffer = chunk)

print "* recording"
all = []
for i in range(0, RATE / chunk * RECORD_SECONDS):
    data = stream.read(chunk)
    all.append(data)
print "* done recording"

stream.close()
p.terminate()

# write data to WAVE file
data = ''.join(all)
wf = wave.open(WAVE_OUTPUT_FILENAME, 'wb')
wf.setnchannels(CHANNELS)
wf.setsampwidth(p.get_sample_size(FORMAT))
wf.setframerate(RATE)
wf.writeframes(data)
wf.close()
That not a bad start but i doubt you would want to send wave files. The audio should still be converted to mp3 or some other compressed format.
 
Posts: 65 | Thanked: 26 times | Joined on Mar 2012 @ Cagliari, Italy
#4313
Originally Posted by AMD View Post
Try typing 123 or 886
No,it doesn't work.....
 
Posts: 190 | Thanked: 206 times | Joined on Jan 2010 @ Accra,Ghana
#4314
would just like to say a big THANK YOU to the devs for all their hard work. when i told a friend that wazapp wasnt working she told me to go and buy a better phone!! told her that if shes happy to be spoonfed apps from d android market she should continue!!

I am happy with a phone which has a thriving community to make the phone exactly as i want it!!

owner of N900 and N9
 
dadaniel's Avatar
Posts: 20 | Thanked: 46 times | Joined on Apr 2012 @ Austria
#4315
Originally Posted by smoof View Post
That not a bad start but i doubt you would want to send wave files. The audio should still be converted to mp3 or some other compressed format.
what about calling a subprocess to convert it?

lame would easily do the trick!!! ... or a dirty os.system() call in a loop.
... it could be saved temporary and deleted after successful sending?


... dont punish me - is just an idea!
 
Posts: 44 | Thanked: 25 times | Joined on Apr 2012 @ Argentina
#4316
Originally Posted by ZogG View Post
Sure, why not to post things like that, as forum is open any whatsapp dev can read it, why not to piss the off little bit, SO THEY BLOCK YOU AGAIN and you'll whinne? Think before... just think.
oh yes, is a SECRET...
 

The Following User Says Thank You to eennbb For This Useful Post:
Posts: 208 | Thanked: 63 times | Joined on May 2012
#4317
thanks alot for the fix
 
Posts: 9 | Thanked: 4 times | Joined on Sep 2012 @ Malaysia
#4318
Originally Posted by requiem_76 View Post
No,it doesn't work.....
Hi,


I find a way to re-register the whatsapp account without downloading bluestacks.

1. Open wazapp and register your number
2. It will say Fail.too.many. ignore it and click on the voice button
3. it will faill but ignore it again and click on the manually input number button.
4. after failing both you will get a icon that says "Everything Failed? Try Me" click on it and it will find back your old account and your set XP

I hope it helps and if it works spread the wrote for me ok ?
 

The Following User Says Thank You to RH87 For This Useful Post:
Posts: 37 | Thanked: 7 times | Joined on Aug 2012
#4319
Guys,

What do I need to do, because mine still says ''need to remove your account from accounts manager and re-register.

I haven't downloaded anything though, i'm just opening whats on my phone, the version that shat itself. What instructions do I need to follow now?

Thanks Cepi & the Wazapp team

+1
 
Posts: 55 | Thanked: 5 times | Joined on May 2012
#4320
hi guys,

thanks for the devs that work so hard for the community. anyway i just bit confused, have read a few early pages but still could not make the wazapp work. i deleted .db file already, install the update, reboot and ask me to re-register the my accound. I did that but as usual i only got back fail message. I tried to use bluestack but after i input my number and so on, it did not send any code to me. i hope someone can help me thanks
 
Reply

Tags
godoftool, harmattan, is-a-miracle, nokia n9, spacker_thread, tarekgalal, toddler_daycare, toolcoderus, wazapp, whatsapp

Thread Tools

 
Forum Jump


All times are GMT. The time now is 18:34.