6

I'm planning an Asterisk configuration that should record videocalls and then feed it to an application.

From what I've researched, it seems like app_h234m is the way to go. But it's not clear to me what are the hardware requirements for this.

Can someone enlighten me?

altmas5
  • 292
  • 1
  • 4
  • 12
jneves
  • 1,043
  • 6
  • 15

4 Answers4

2

That really depends on the lines you want to hook up to. If you want to do Video Calls over a normal phone line, then you'll need something like a TDM card, personally I recommend Digium Cards. (link) They kinda started the asterisk game and I've never had a problem with any of their cards.

However there is no special hardware required to make or recieve a video call, Asterisk simply connects the calls. Most SIP providers allow video calls, so i'd suggest going with one of them, and just make sure your internet connection is capable of handling the load.

Add (see below) in sip.conf to be able to support video calls.

[general]
videosupport=yes ; enable Asterisk video support
grufftech
  • 6,620
  • 4
  • 35
  • 37
  • + http://forums.speedguide.net/showthread.php?t=191804 Here's a link for more information on video call bandwidth requirements. – grufftech Jun 09 '10 at 17:00
  • thanks - I'm finally getting to where I need - SIP is not an option here (non-existence of providers in my country). Can you give me a pointer or ideas on what would be the minimum hardware for 5 simultaneous video-calls in a landline and or gsm? – jneves Jun 09 '10 at 21:12
  • GSM is getting a little out of my particular expertise, However I have seen a system configured in this manner before. For GSM, You need a CDMA/GSM Gateway device, something pretty large to handle 5+ simutaneous calls. A PORTech MV-378 should do the trick for GSM. For standard phonelines, you'd need an Analog card, something like Digium AEX800. However, To offer some scalability, your probably wiser to go digital and get a T1/E1/PRI card, i've used the TE210P with great success in the past. – grufftech Jun 09 '10 at 22:10
1

I'd read "the book", Asterisk - The future of telephony. To be specific, chapter 2 "Preparing a system of asterisk".

Quote from the book:

"Server Hardware Selection
The selection of a server is both simple and complicated: simple because, really, any x86-based platform will suffice, but complicated because the reliable performance of your system will depend on the care that is put into the platform design.
"

Link: http://downloads.oreilly.com/books/9780596510480.pdf
More docs: http://www.asterisk.org/docs

artifex
  • 1,634
  • 1
  • 17
  • 22
  • That seems generic advice regarding Asterisk. Does that mean that h234m will record videocalls from any available channel? – jneves May 22 '10 at 18:54
1

jneves: I may be able to answer you question as I have experience with voice and video in Asterisks. Could you give me more details however about your current setup and what you plan to do? IE: How many concurrent voice calls are you running on the setup? how many concurrent video calls? If you can also give me an estimate of where you see this system in the future, that will help.

ThaKidd KG5ORD
  • 329
  • 1
  • 7
  • 17
0

Any old box will be fine, it all depends on how many calls you need it to handle. And with Asterisk it's probably best to scale up horizontally rather then vertically. Do your own testing and judge from that.

Also, Freeswitch seems to support this functionality as well with its mod_fsv. This may be more reliable then using Asterisk.

Henk
  • 203
  • 2
  • 7