CMB Rocks
|
2011-06-13
, 15:18
|
Posts: 15 |
Thanked: 3 times |
Joined on Apr 2011
@ The Netherlands
|
#81
|
|
2011-06-14
, 01:41
|
Posts: 356 |
Thanked: 123 times |
Joined on Dec 2008
|
#82
|
|
2011-07-05
, 21:09
|
Posts: 79 |
Thanked: 332 times |
Joined on Jul 2011
|
#83
|
#!/bin/sh let LAST=2 while true; do if [ $(pidof telepathy-stream-engine) ]; then let NOW=1 else let NOW=0 fi if [ $NOW != $LAST ]; then if [ $NOW -eq 0 ]; then sh /bin/speedadaptnormal > /dev/null else sh /bin/speedadaptfix > /dev/null fi fi if [ $(pidof telepathy-stream-engine) ]; then let LAST=1 else let LAST=0 fi sleep 5 done
|
2011-07-05
, 21:27
|
Posts: 182 |
Thanked: 40 times |
Joined on Apr 2010
@ Seatle, WA
|
#84
|
Hi,
I've played a little bit, because I couldn't manage to launch the script on calls via dbus-scripts.d, it happened nothing.
I don't know how good it is or not and how affect the power consumption of the phone, but it seems to be working, although it is about 1 hour old.
I start it upon boot and now SIP and Skype connections work fine.
So, here it is:
Maybe the 'code' itself is not the best, and it is my very first try to make something like a 'script', so please be patient.Code:#!/bin/sh let LAST=2 while true; do if [ $(pidof telepathy-stream-engine) ]; then let NOW=1 else let NOW=0 fi if [ $NOW != $LAST ]; then if [ $NOW -eq 0 ]; then sh /bin/speedadaptnormal > /dev/null else sh /bin/speedadaptfix > /dev/null fi fi if [ $(pidof telepathy-stream-engine) ]; then let LAST=1 else let LAST=0 fi sleep 5 done
I don't know its possibilities, so if anyone can advice a better solution, I'm happy to hear it.
Also, if you say it is a completely bad solution, please write your opinion.
|
2011-07-05
, 21:40
|
Posts: 79 |
Thanked: 332 times |
Joined on Jul 2011
|
#85
|
|
2011-07-07
, 02:18
|
Posts: 79 |
Thanked: 332 times |
Joined on Jul 2011
|
#86
|
#!/bin/sh let LAST=2 while true; do if [ $(pidof telepathy-stream-engine) ]; then let NOW=1 else let NOW=0 fi if [ $NOW != $LAST ]; then if [ $NOW -eq 0 ]; then sh /bin/speedadaptnormal > /dev/null else sh /bin/speedadaptfix > /dev/null fi let LAST=NOW fi sleep 5 done
|
2011-10-10
, 15:28
|
Posts: 23 |
Thanked: 14 times |
Joined on Feb 2010
@ Paris, France
|
#87
|
|
2012-09-24
, 02:12
|
Posts: 17 |
Thanked: 17 times |
Joined on Jan 2011
|
#88
|
|
2013-04-27
, 18:21
|
Posts: 25 |
Thanked: 9 times |
Joined on Oct 2010
|
#89
|
If I make or receive a SIP call, after some time the audio starts getting choppy and after a while I can't hear anything, while the other end can hear me perfectly. If I wait a few seconds it recovers, but then the problem will happen again in the same call.
|
2013-04-29
, 19:01
|
Posts: 25 |
Thanked: 9 times |
Joined on Oct 2010
|
#90
|