Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

What's new in WCS 5.1 compared with WCS 5.0

  1. Added SIP calls, streams and system state basic realtime monitoring, with the ability to view calls and streams history.
  2. SIP core rewritten.
  3. Added audio and video streams mixer.
  4. Added stream recording on demand (to record mixed stream for example).
  5. Added streams published in chat room recording with record files merging ability.
  6. Added RTMP stream pulling.
  7. Added REST API methods to manage new functions.

New version installation with previous version update

...

Code Block
languagebash
themeRDark
wget https://flashphoner.com/downloads/builds/WCS/5.1/FlashphonerWebCallServer-5.1.33753356.tar.gz

2. Unpack the package

Code Block
languagebash
themeRDark
tar -xvzf FlashphonerWebCallServer-5.1.33753356.tar.gz

3. Stop WCS

Code Block
languagebash
themeRDark
service webcallserver stop

...

Code Block
languagebash
themeRDark
cd FlashphonerWebCallServer-5.1.33753356/server/tools
./update.sh

...

Suppose there are two versions installed on the server: 5.0.3333 and 5.1.33753356. To switch from 5.1.3375 3356 to 5.0.3333 do the following steps:

1. Stop WCS 5.1.33753356

Code Block
languagebash
themeRDark
service webcallserver stop

...

Symptoms: "Permission denied" message on step 4update.sh launch.

Solution: set permissions to execute update.sh script on step 4

Code Block
languagebash
themeRDark
cd FlashphonerWebCallServer-5.1.3375/server/tools
chmod +x update.sh
./update.sh

...