View Single Post
  #488  
Old 05-19-2020, 08:27 PM
cabulo cabulo is offline
Senior Member
 
Join Date: Jan 2017
Posts: 102
cabulo is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


supersonic80,

Are you still alive and well ?

HELP !!

I can't make your updated rtmpdump working on latest Ubuntu following your guidance from Github.
Can you please post new guidance on how to install your rtmpdump?

Here is my script and there is only working rtmpdump missing. Your rtmpdump works in windows.

HTML Code:
#!/bin/bash
model="karitto__2"
while :; do
	d=$(date +%Y-%m-%d_%H-%M-%S)
	file="${model}_${d}.flv"
	rtmpdump -v -r "rtmp://edge147.stream.highwebmedia.com/live-edge" \
	-a "live-edge" \
	-f "WIN 32,0,0,344" \
	-W "https://ssl-ccstatic.highwebmedia.com/tsdefaultassets/CBV_TS_v1.0.swf" \
	-p "https://chaturbate.com/%model%/" \
	-C S:cabulo \
	-C S:%model% \
	-C S:3.22 \
	-C S:c066c87f3b352759d75ff4f7a937a36de9fadf76364fb17dbb750595a8bbc76bfe4f28bcd9fd12cd8eeea8b6bb70dff8c1930b20307bd1151c7770b4ce6e7176 \
	-C S:cb69382e5826264c5fcd5450fc7baa451a78f11b9242e867926253341571f6a8 \
	-y "mp4:wowz://origin243.stream.highwebmedia.com/live-origin/%model%-sd-968a13449d3795b401a550904dcc15ccb78b2309cc5790e66e14a8b3ba54eb2e_trns_h264_1080p" \
	-o "$file"
	fsize=$(ls -s "$file")
	if [ "$fsize" = "0 ${file}" ]; then rm "$file"; fi
	sleep 60
done

Tried this one as well:

HTML Code:
sudo apt update
sudo apt upgrade

sudo apt-get install build-essential git libssl1.0-dev

git clone https://github.com/BurntSushi/rtmpdump-ksv.git
cd rtmpdump-ksv
make
It ends here with this error:

HTML Code:
sudo apt-get install build-essential git libssl1.0-dev

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libssl1.0-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libssl1.0-dev' has no installation candidate

Last edited by cabulo : 05-20-2020 at 04:55 PM. Reason: simplified script for clarity
Reply With Quote