A world in dk(decay/denmark) » server http://rotand.dk Just another pointless weblog Sat, 30 Nov 2013 21:03:48 +0000 en-US hourly 1 https://wordpress.org/?v=4.3.18 CLI voip calls http://rotand.dk/2009/05/03/cli-voip-calls/ http://rotand.dk/2009/05/03/cli-voip-calls/#comments Sun, 03 May 2009 08:13:27 +0000 http://rotand.dk/blog/?p=178 front1
Sometimes it would be nice to use a script call somebody and play a message.
I “needed” a wake-up-call system and since I use a voip-phone and have access to a server. I thought i would be quite nifty if I could have the server call me. Furthermore i would like to be able to script calls, so for instance the calendar could call me with reminders rather than sending an email.

I googled around but weren’t able to find such a utility. But i did find cli-sip client pjsua, based on pjsip. Its posible to use it in conjunction with a shell script.

Scripting

jacob@vps:~./control.sh sip:108329@foobar.com "wake up you lazy bastard!"
Is the basic usage i wanted to have. In order to get this functionality there are two steps.

Generating wav file

I ust use text2wave, fromĀ festival, which is available as a package on ubuntu.
echo $2 | text2wave - -o message.wav

$2 to use the second argument, and pipe it to text2wave. Let text2wave read sdtin and output a file message.wav

Call and play the wav file

pjsua_app --config-file=test.conf --play-file message.wav $1
Here the magic is in the conf file. Its a rather straightforward to use, and the documentation is good.

# we don't want the host's audio device
--null-audio
# SIP parameters
--realm domain.com
--registrar sip:number@domain.dk # DNS SRV, or FQDN

--username USERNAME
--password PASS
# default of 55 will be rejected as being too short by sipX
--reg-timeout 3600
# auto-answer all calls with "200 OK"
--auto-answer 200
# automatically loop incoming RTP to outgoing RTP
--auto-loop
# mix WAV file into the audio stream

--auto-play
--auto-loop
--duration=60

This is based on a config file i found somewhere, can’t remember where. There a a lot of other options, pjsua handles nat quite nicely as well. It was easy to test it at my homebox, behind a router, just be sure to set an external ip address.

Now this will call and play the message, but it wont stop pjsua. It will just sit around waiting for someone to call. I couldn’t find any nice way to handle this, but since pjsua reads stdin for commands, it possible to pipe commands to it.
echo "sleep 60000 q" | pjsua_app --config-file=test.conf --play-file message.wav $1
So sleep for 60 seconds, then accept the next input from stdin, the “q”uit command.

Generally this configuration is set for 1 minute, it might be necessary to tweak this.

Frustrations

There is/were a bug in the tarball, that meant that it wouldn’t run if it couldn’t find a soundcard, since it should run on a vps this is quite annoying. But in the svn version its solved, so if you want to do something like this, use the svn version. Other than this installation is straightforward.

When working with cron, remember to use full paths. In the control.sh script the better solution were to add a cd working directory, in order to have all the paths correct. This were quite annoying to debug, as the script would run from the shell. And just fail when added to the crontab. Furthermore mails from crontab were delayed, so i couldn’t see the output. I did get someone to look over my shoulder and spot the bug.

]]>
http://rotand.dk/2009/05/03/cli-voip-calls/feed/ 2
New server http://rotand.dk/2008/04/03/new-server/ http://rotand.dk/2008/04/03/new-server/#comments Thu, 03 Apr 2008 19:49:10 +0000 http://rotand.dk/blog/2008/04/03/new-server/ The time has come and I’m moving to a new server.

Its a virtual private server, which mean root access via ssh, and a lot more managing. At the moment I’m fiddling with testing and moving data. Though very soon I will be moving, which probably will give some weirdness here, until everything is settled.

I am looking forward to be able to do all the fun stuff on the new server, ie jsp. In the meantime its just annoying to configure DNS, take backup’s, fixing stuff.

Lessons learned so far :

Its kool to be able to ssh in to the new server and just move everything with ftp and not download and upload.

iconv is a nifty unix command for converting: iconv -f ISO-8859-1 -t UTF-8 file > newFile

DNS is a nightmare at least for me so far.

Its easy to move wordpress: Export everything, install a new wordpress and import the file. (which incidental also means upgrading).

pmwiki is also easy to move.

I have a mediawiki, that I don’t use any more and i couldn’t find an easy way to convert it to static html, so i think ill just have to live without it. Which is a bit annoying since I wikisquatted at it to show of some povray stuff and that will be lost.

I have a lot of old junk files from various experiments.

]]>
http://rotand.dk/2008/04/03/new-server/feed/ 1
Flash development http://rotand.dk/2008/02/09/flash-development/ http://rotand.dk/2008/02/09/flash-development/#comments Fri, 08 Feb 2008 21:21:13 +0000 http://rotand.dk/blog/2008/02/09/flash-development/ A course Im taking requires that we use flash and we are left to using specific workstations at school or download a 30 day trial for the 6-7 week project. And well either way we are supposed to be using a proprietary piece of software from Adobe.

The first flash assignment were to create a picture slide show, with captions and a soundtrack. Using the Adobe flash gui its very easy, drag and drop “programming”.

But as Richard Stallman says “its not a matter of convenience, but of ethics”. So I went looking for replacements. In another course I had no problems using octave instead of matlab, so should this be any different? Yes, unfortunately it seems that its very difficult to get the needed features in free software, well at least in the given timeframe.

HaXe is able to compile to swf, as well as doing a lot of other nifty stuff. I just learnt about it recently from this video.

I didn’t manage to make the entire assignment, (yet?) in haxe, but i did make this :
flash presentation(5MB+)

UPDATE

I did manage to add sound and captions.

So how did I do it?

Well first of all i installed haxe and swfmill. Haxe is able to use the actionsscript api and swfmill can create resources so your are able to refference them in you haxe code.Here is the recipe i used to create this slideshow.

1. create a xml file for swfmill, in order to create a resources for the haxe code.This i something like

 <movie width="480" height="480" framerate="25">
   <frame>
      <library><clip id="img1" import="library/newton001Slide_.png"/>

unfortunately swfmill isn’t able to add sound to a library, so that had to be loaded directly from a file. I had some trouble getting it to function on the server but i think that adding “-D network-sandbox” to the haxe compilation might have done something. ???

2. run swfmill, thats swfmill simple slides.xml slides.swf

now i had linkage names for the image files, and could add them to the movieClip.

3. Create file SlideShow.hx

The main part. The basic haxe syntax is pretty straightforward, but since it uses the actionscript api it were mostly a question of getting a hang of actionscript. I did however strugle a bit with making a anonymous function, for the sounds onLoad. I used “static inline function sndStart(succes){…}” , its a wee bit diffrent than what i would do in java. but it works.

3. compile.

make a “make file” for haxe, compile.hxml

-swf test.swf
-main SlideShow
-swf-lib slides.swf
-swf-header 480:480:25:FFFFFF
-D network-sandbox

The last part -D is a conditional flag and as far as i can tell it shouldn’t do anything, but a saw it in Fmp3PlayerHx and when i added it the sound seemed to work from the server, using a URL :s :s

4. run haxe compile.hxml

5. display the pretty result. (try not to go crazy when wordpress decides to help you format the html code….), at first i tried embedding the flash in this post, but wordpress kept on changing the code, apparently if you add code and have newlines between the tags it throws in a couple og <p> tags …..

Now its on a separate page, then you don’t have to download the 5 mb flash file just to view the page, and I can use wordpress with out getting too frustrated.

sourcecode slideShow.hx

The music is “the free software song” this version is by Jono Bacon , and I personally prefer it to the version by Richard Stallman

]]>
http://rotand.dk/2008/02/09/flash-development/feed/ 2
Annoying db-server http://rotand.dk/2007/05/30/annoying-db-server/ http://rotand.dk/2007/05/30/annoying-db-server/#comments Wed, 30 May 2007 07:02:47 +0000 http://rotand.dk/blog/2007/05/30/19/ I knew my host didn’t have the best databases, but once I had installed WordPress. Which uses a mysql for every page, i found out just how bad it was. Often I was not even able to get a page to load. So I contacted support.

The answer : since you don’t have a business solution, you will experience lag at peak-hours. Apparently there are more peak than non-peak hours in a day…

The solution : upgrade to business ( which is triple the price ) or

  • backup and delete all databases
  • wait until their controlpanel restart
  • create a new database, which now will be on the database-server with least load
  • restore backup

I did it, and it seems to work better. But I think its bad service and i immediately went looking for other hosting. I have prepaid so I’ll probably stay the year out – but if you know of a good an reliable host (and reasonably priced host ) please let me know.

the annoying host is surftown

The transistion went faily well, meaning i got to restore my blog – before their main controlpanel went down for maintenance?!

After restoring Tinymce wouldn’t show popups ( tinymce – is the visual editor for WordPress). It shouldn’t be related. But anyways i had to add a line to a tiny_mce_popup.js stating the domain. Something about FireFox blocking javascript, i found this fix
edit: which wasn’t a solution after all, something is “bugging” me…

]]>
http://rotand.dk/2007/05/30/annoying-db-server/feed/ 1