Showing posts with label raspberry pi. Show all posts
Showing posts with label raspberry pi. Show all posts

Saturday, January 20, 2024

How to build a Private phone network on VOIP using Asterisk PBX with Raspberry Pi and Mobile client














  • There was a need for an Organisation to build a phone network for use by their employees. Unlike the yester-years where telephony was analog and it required switching exchanges to route calls. The Govt or large corporations would set up Private Branch Exchanges (PBX) for this function. Now a days calls can be made digitally on the internet itself given that a server can appropriately route them to their chosen destinations. Voice over IP is used to digitally transmit packets over IP on the network to enable calling. There is a need for a VOIP server and clients that can talk to each other just like the old phone network. This can be easily achieved using robust opensource tools.
  • Asterisk is an opensource PBX that has been around for a long period of time. Asterisk is an open source framework for building communications applications. Asterisk turns an ordinary computer into a communications server. Asterisk powers IP PBX systems, VoIP gateways, conference servers and other custom solutions. It is used by small businesses, large businesses, call centers, carriers and government agencies, worldwide. Asterisk is free and open source. https://www.asterisk.org/
  • For the VOIP Client Linphone is a good choice. There was need for a command line interface to auto dial a call, etc.https://www.linphone.org/
  • The above video demonstrates a few capabilites of the  system. As can be seen a netbook was used to run the Asterisk Server and configure  various VOIP clients to be given numbers that they can be reached at. A couple of spare Raspberry Pis were used to run linphone as VOIP call originators/receivers. 
    • The first part of the video shows how to dial an RPI receiver using a phone as a VOIP originator. Linphone on the RPI is configured to auto answer the calls and play the message for the intended recepient.
    • In the second part, Asterisk can be used to broadcast audio to various configured end clients. As can be seen any call on a configured public number is broadcast to all the clients and played out in public. One use of such a system is in Airports, etc. This system can also be extended for say conditional broadcast for eg. informing the public of an illegally parked car determined so by using computer vision, etc.

Thursday, September 15, 2022

Raspivid Modification to Display Custom Message as Annotation on Video Feed (Local/Stream)

 




Raspivid Custom Annotations

  • Raspberry Pi distribution is equipped with an executable called raspivid/raspistill which is used to capture and view video/still images from the RPI's CSI camera. The source code for this is available on the internet.
  • It has various options like displaying video on HDMI, running TCP/UDP stream server, capability of reading encoded MP4 streams from the encoder, annotating the transmitted stream, automated still captures, effects, etc.
  • Annotations like an OSD label can be provided on the stream being transmitted. Time annotations, etc can be enabled on the stream/video feed. 
  • The only drawback is that annotations are updated every second on the feed.
  • As there was a need to view various sensor information embedded in the video from a remotely operated vehicle, it would indeed be advantageous to extend raspivid capabilites.
  • As a quick modification was intended, the relevant files were changed to use an IPC (InterProcess Communication) mechanism and any program that would write its string into the IPC entity at approximately 1 second interval could send its information embedded on the video feed to the remote client.
  • A video showing the ultrasonic sensor reading on the front of a vehicle is being embedded in the network stream and is as shown in the video.

Making Minimal Mechanical Digital Clock

Making Minimal Mechanical Digital Clock New devices are so much fun to build or use. Lately been motivated by interesting designs from aroun...