Notices


Reply
Thread Tools
Posts: 137 | Thanked: 51 times | Joined on Aug 2012 @ Netherlands
#4301
Originally Posted by mihir View Post
Can't Send message or receive, the last seen on doesn't appear below the name of the contact ...the red dot doesn't turn yellow or green when a message is sent....rebooted my device many times even i restarted wazapp a number of times but no use....... Wat should i do
Stop spamming and read previous pages.....page 427 my post!
These people man.....they do not take time to read a few pages were the solution is explained.....no they keep spamming about this over and over again
 

The Following User Says Thank You to sigpro For This Useful Post:
Posts: 59 | Thanked: 16 times | Joined on Jul 2012 @ India
#4302
minor bug: when u add a new pic to gallary and try to open the gallary via wazapp, it jus keeps loading...doesnt open...happens sumtyms though, noticed it wen i add pics to the gallary, taking pics and sending seems ok
Attached Images
 
 
Posts: 9 | Thanked: 1 time | Joined on Sep 2012
#4303
Originally Posted by sdjeht View Post
minor bug: when u add a new pic to gallary and try to open the gallary via wazapp, it jus keeps loading...doesnt open...happens sumtyms though, noticed it wen i add pics to the gallary, taking pics and sending seems ok
I deleted the db file. Now it's working )
 

The Following User Says Thank You to maqbul95 For This Useful Post:
knobtviker's Avatar
Posts: 665 | Thanked: 2,388 times | Joined on Feb 2012 @ Zagreb, Croatia
#4304
About audio recording:
Best would be to build our own or use open source Python project if such exists.
I have it built in Qt, Siri style, but not really proper in this use case.

Make an audio recorder people in Python, we'll do the rest.
Contribute.
 

The Following 3 Users Say Thank You to knobtviker For This Useful Post:
AMD's Avatar
Posts: 1,390 | Thanked: 710 times | Joined on May 2012 @ Beirut, Lebanon
#4305
Thank you for the update guys, I appreciate your work a lot I am going to try it now, hope you make the best of it
__________________
Twitter: @ahmadmdaher

Originally Posted by Dave999
I will vote AMD for president next time if I'm having any shares during next meeting.


Do good for a human being and like my art page!
 

The Following User Says Thank You to AMD For This Useful Post:
Posts: 181 | Thanked: 64 times | Joined on Feb 2012
#4306
Originally Posted by dadaniel View Post
haaa! got it working, but its just a temporary solution!

1. i removed my whatsapp account
2. i removed the wazapp version from CepiPerez
3. i removed /home/user/.wazapp folder
4. i installed the version from tgalal (thanks man )
5. synced the contacts
6. uninstalled the version from tgalag (i still get the "connecting ..." issue)
7. re-installed the version from CepiPerez


and now its working - with all my contacts!!!


cheers!
This trick worked !
 
Posts: 65 | Thanked: 26 times | Joined on Mar 2012 @ Cagliari, Italy
#4307
Hi everybody!
Here is my problem (by the way: I spent about 2hours reading the last 60 pages....so be kind!!!):
I can't install wazapp....I mean,like everybody,mine was working up to few days ago,then stopped due to "whatsapp".
So,I tried yo install latest version of ceciperez(che,mucha gracias por tu trabajo!!) but....I can't even install it.
It starts loading,then in the registration phase i put my datas and then it says "FAILED SERVER SAYS WAZAPP NOT SUPPORTED".
Enter code manually? (I got it): "failed.server said unknow reason".
I tried as well with the "everything fail..." and it said the same thing: unknow reason.
Any idea?
thank you so much
 
AMD's Avatar
Posts: 1,390 | Thanked: 710 times | Joined on May 2012 @ Beirut, Lebanon
#4308
Originally Posted by requiem_76 View Post
Hi everybody!
Here is my problem (by the way: I spent about 2hours reading the last 60 pages....so be kind!!!):
I can't install wazapp....I mean,like everybody,mine was working up to few days ago,then stopped due to "whatsapp".
So,I tried yo install latest version of ceciperez(che,mucha gracias por tu trabajo!!) but....I can't even install it.
It starts loading,then in the registration phase i put my datas and then it says "FAILED SERVER SAYS WAZAPP NOT SUPPORTED".
Enter code manually? (I got it): "failed.server said unknow reason".
I tried as well with the "everything fail..." and it said the same thing: unknow reason.
Any idea?
thank you so much
Try typing 123 or 886
__________________
Twitter: @ahmadmdaher

Originally Posted by Dave999
I will vote AMD for president next time if I'm having any shares during next meeting.


Do good for a human being and like my art page!
 
Posts: 40 | Thanked: 4 times | Joined on Mar 2012
#4309
I'm trying to install new version of wazapp, thats works ok, but now I'm installing bluestacks and when I try to download Whatsapp it's said check connection setting.... where? I'm behind a proxy server is that the problem?
 
Posts: 594 | Thanked: 1,094 times | Joined on Aug 2012 @ Rhine
#4310
Originally Posted by knobtviker View Post
About audio recording:
Best would be to build our own or use open source Python project if such exists.
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()
 

The Following 5 Users Say Thank You to Leinad For This Useful Post:
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 16:43.