Skip to content

Commit

Permalink
Merge branch 'master' into update-mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
muratugureminoglu authored Sep 1, 2024
2 parents 9fa38e8 + afe9d85 commit f4bf567
Show file tree
Hide file tree
Showing 8 changed files with 85 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install ChromeDriver
run: |
wget https://storage.googleapis.com/chrome-for-testing-public/126.0.6478.63/linux64/chromedriver-linux64.zip
wget https://storage.googleapis.com/chrome-for-testing-public/127.0.6533.119/linux64/chromedriver-linux64.zip
unzip chromedriver-linux64.zip
cd chromedriver-linux64
sudo mv chromedriver /usr/bin/chromedriver
Expand Down
13 changes: 11 additions & 2 deletions kubernetes/ams-k8s-deployment-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,29 @@ spec:
# You may also need to add -u and -p parameters for
# specifying mongodb username and passwords respectively
args: ["-g", "true", "-s", "true", "-r", "true", "-m", "cluster", "-h", "mongo"]
volumeMounts:
- mountPath: /tmp
name: temp-volume
livenessProbe:
httpGet:
path: /
port: 5080
initialDelaySeconds: 10
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /
port: 5080
initialDelaySeconds: 10
initialDelaySeconds: 30
periodSeconds: 10
resources:
requests:
cpu: 4000m
volumes:
- hostPath:
path: /temp-data
type: DirectoryOrCreate
name: temp-volume

# imagePullSecrets:
# - name: docker
9 changes: 9 additions & 0 deletions kubernetes/ams-k8s-deployment-origin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ spec:
# You may also need to add -u and -p parameters for
# specifying mongodb username and passwords respectively
args: ["-g", "true", "-s", "true", "-r", "true", "-m", "cluster", "-h", "mongo"]
volumeMounts:
- mountPath: /tmp
name: temp-volume
livenessProbe:
httpGet:
path: /
Expand All @@ -60,5 +63,11 @@ spec:
resources:
requests:
cpu: 4000m
volumes:
- hostPath:
path: /temp-data
type: DirectoryOrCreate
name: temp-volume

# imagePullSecrets:
# - name: docker
9 changes: 9 additions & 0 deletions kubernetes/ams-with-turn-server/ams-k8s-deployment-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ spec:
# specifying mongodb username and passwords respectively
# args: ["-g", "true", "-s", "true", "-r", "true", "-m", "cluster", "-h", "mongo"]
args: ["-r", "true", "-m", "cluster", "-h", "mongo"]
volumeMounts:
- mountPath: /tmp
name: temp-volume
livenessProbe:
httpGet:
path: /
Expand All @@ -49,5 +52,11 @@ spec:
resources:
requests:
cpu: 4000m
volumes:
- hostPath:
path: /temp-data
type: DirectoryOrCreate
name: temp-volume

# imagePullSecrets:
# - name: docker
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ spec:
# specifying mongodb username and passwords respectively
# args: ["-g", "true", "-s", "true", "-r", "true", "-m", "cluster", "-h", "mongo"]
args: ["-r", "true", "-m", "cluster", "-h", "mongo"]
volumeMounts:
- mountPath: /tmp
name: temp-volume
livenessProbe:
httpGet:
path: /
Expand All @@ -49,5 +52,11 @@ spec:
resources:
requests:
cpu: 4000m
volumes:
- hostPath:
path: /temp-data
type: DirectoryOrCreate
name: temp-volume

# imagePullSecrets:
# - name: docker
12 changes: 12 additions & 0 deletions load-testing/rtmp_publisher.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
file=$1
server=$2
noofclients=$3

for (( i=1; i <= $noofclients; ++i ))
do
COMMAND="ffmpeg -re -stream_loop -1 -i ${file} -codec copy -f flv ${server}_${i}"
$COMMAND >/dev/null 2>&1 &
echo "running command $COMMAND"
sleep 1
done
12 changes: 12 additions & 0 deletions load-testing/srt_publishers.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
file=$1
server=$2
noofclients=$3

for (( i=1; i <= $noofclients; ++i ))
do
COMMAND="ffmpeg -re -stream_loop -1 -i ${file} -codec copy -f mpegts ${server}_${i}"
$COMMAND >/dev/null 2>&1 &
echo "running command $COMMAND"
sleep 1
done
36 changes: 22 additions & 14 deletions vod_transcode.sh
Original file line number Diff line number Diff line change
@@ -1,29 +1,37 @@
#!/bin/bash
#
# This bash script converts your VoD files to HLS format. (720p,480p,240p)
# This bash script converts your VoD files to HLS format. (720p, 480p, 240p)
#
# Installation Instructions
# sudo apt-get update && sudo apt-get install ffmpeg -y
# vim [AMS-DIR]/webapps/applications(LiveApp or etc.)/WEB-INF/red5-web.properties
# settings.vodUploadFinishScript=/Script-DIR/vod_transcode.sh
# switch to application advance properties and set the property,
# "vodUploadFinishScript": "/path/to/vod_transcode.sh ",
# sudo service antmedia restart
#

# Don't forget to change the Ant Media Server App Name
# Don't forget to change the Ant Media Server App Name in which you want to save the files
AMS_APP_NAME="WebRTCAppEE"

file=$1
file_name=$(basename $file .mp4)

# Bitrates
# 720p
a=("1280x720" "2500k")
# 480p
b=("640x480" "1500k")
# 240p
c=("320x240" "800k")

# Bitrates and resolutions
resolutions=("1280x720" "640x480" "320x240")
bitrates=("2500k" "1500k" "800k")
names=("720p" "480p" "240p")

cd /usr/local/antmedia/webapps/$AMS_APP_NAME/streams/

$(command -v ffmpeg) -i $file -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -s:v:0 ${a[0]} -c:v:0 libx264 -b:v:0 ${a[1]} -s:v:1 ${b[0]} -c:v:1 libx264 -b:v:1 ${b[1]} -s:v:2 ${c[0]} -c:v:2 libx264 -b:v:2 ${c[1]} -c:a aac -f hls -hls_playlist_type vod -master_pl_name ${file_name}.m3u8 -hls_segment_filename ${file_name}_%v/${file_name}%04d.ts -use_localtime_mkdir 1 -var_stream_map "v:0,a:0,name:720p v:1,a:1,name:480p v:2,a:2,name:360p" ${file_name}_%v.m3u8
# Create directories for each resolution
for name in "${names[@]}"; do
mkdir -p ${file_name}_${name}
done

$(command -v ffmpeg) -i $file \
-map 0:v -map 0:a -s:v:0 ${resolutions[0]} -c:v:0 libx264 -b:v:0 ${bitrates[0]} \
-map 0:v -map 0:a -s:v:1 ${resolutions[1]} -c:v:1 libx264 -b:v:1 ${bitrates[1]} \
-map 0:v -map 0:a -s:v:2 ${resolutions[2]} -c:v:2 libx264 -b:v:2 ${bitrates[2]} \
-c:a aac -f hls -hls_playlist_type vod \
-master_pl_name ${file_name}.m3u8 \
-hls_segment_filename ${file_name}_%v/${file_name}%04d.ts \
-var_stream_map "v:0,a:0,name:720p v:1,a:1,name:480p v:2,a:2,name:240p" \
${file_name}_%v/${file_name}.m3u8

0 comments on commit f4bf567

Please sign in to comment.