Off Topic - Can anyone help using the crazycash plugin for Streamlink? | Social Media Girls

Off Topic Can anyone help using the crazycash plugin for Streamlink?

  • Going forward please follow these rules when posting:

    -The content MUST be from TikTok, do not post slips from other platforms.

    -You MUST include profile names / link to the profile, or make every attempt to include it.

    -Include timestamps if you post a long video or a full live video.

    -Make sure ALL girls posted are 18+

  • Please make sure all of the videos and screenshots you're posting are only of people over the age of 18.

    This also means no children in the background.

    No more warnings.

  • Absolutely no doxing. This includes everything from using and asking for real names, asking for IG and other social media accounts. No social media rips.

    Anyone breaking this rule will be banned as stated in rule 4 of the forum:

    4) No doxing. Breaking this rule will result in a permanent ban. Under no circumstances the real names or personal information of model should to be revealed.

Welcome to the Social Media Girls Forum!
Feel free to sign up and join the discussion on all your favourite Social Media Girls. YouTube and Twitch oops moments, Onlyfans leaks, Celebrity sex tapes and More! It's free and takes 10 seconds!
Sign up
its just a small script without error checks

you have to stop that script by Ctrl+C. i was too lazy to build 404 checks to end that script. maybe in future.

XXX your download path here XXX << insert your own path

Code:
#!/bin/bash

dlurl=$1
dlname=$2
timeouttime=$3
loop=$4

if [ "$timeouttime" = "" ]; then timeouttime=60; fi
if [ "$loop" = "" ]; then loop=0; fi

# Screen Title
screen -X title  "$dlurl $dlname $timeouttime $loop"

while [ true ] ; do

  DATE=$(date +%Y-%m-%d-%H-%M)

  # Output Informationen
  let "loop+=1"; echo "----------"; echo "loop: $loop"; date; echo "$0 $dlurl"

  streamlink -l debug --http-no-ssl-verify $dlurl best -o "/home/XXX your download path  here XXX/$dlname$loop_$DATE.ts"

  echo "sleep $timeouttime"
  sleep $timeouttime
done

your could save that script as crazycash.sh and copy it to /usr/local/bin/
chmod 755 to make it executable

usage: crazycash.sh URL NAME
example: crazycash.sh https://crazycash.tv/view-stream/162825 roxanne
 
Comment
Heres one more no link conversioon required. I like the timeout handling, I might have to steal that.


Code:
#!/bin/bash

rec_dir="$(pwd)/recorded"

streamlink_command=$(command -v streamlink)
sed_command=$(command -v sed)

if [[ ! -d "${rec_dir}" ]]; then
mkdir -p "${rec_dir}"
fi

append_to_url='_720p/playlist.m3u8'
wss_to_http='s/wss:\/\//https:\/\//g'
date=$(date +%Y-%m-%d-%H-%M)

if echo "${1}" | grep -q 'wss:\/\/'; then
video_http=$(echo "${1}" | "${sed_command}" "${wss_to_http}")
video_http="${video_http}""${append_to_url}"
echo "Recording ${video_http}......"
"${streamlink_command}" -l debug --http-no-ssl-verify "${video_http}" best -o "${rec_dir}/crazy_cash_${date}.ts"
else
echo "Error ${1} is not a wss:// link."
fi

exit 0
 
Comment