Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording (Adult streaming videos)
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #91  
Old 10-25-2015, 01:44 PM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by CrazyNash View Post
Ok just to let you know - i used that script for a while, but there were quite a lot of problems with it in my opinion.
CrazyNash - Is there any chance you could provide your scripts mate?
Reply With Quote
  #92  
Old 10-26-2015, 05:04 AM
beneton2003 beneton2003 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 4
beneton2003 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


both variations python version as well as javascript version works fine, but i like js version bcs no troulbes with whitelists.txt, thanks a lot for authors
Reply With Quote
  #93  
Old 11-03-2015, 10:25 AM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Using the Javascript version and hit a brick wall. Any help would be appreciated in how to track this error down.


pi@raspberrypi ~/capturebate-node $ sudo node main.js
[2015-11-03T052111] capturebate-node started
[2015-11-03T052131] texas_blonde is now online, starting rtmpdump process
[2015-11-03T052131] milliemartins is now online, starting rtmpdump process

events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn ENOENT
at errnoException (child_process.js:1000:11)
at Process.ChildProcess._handle.onexit (child_process.js:791:34)
pi@raspberrypi ~/capturebate-node $
Reply With Quote
  #94  
Old 11-03-2015, 11:24 PM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Making progress. Reinstalled rtpmdump and now have the following error.

Unhandled rejection TypeError: Object #<Object> has no method 'statsAsync'
at /home/pi/capturebate-node/main.js:45:13


It seems Node doesn't appear to support fs.statsAsync, only fs.statAsync.. but that doesn't work either (NetStream.Play.Failed)!
Reply With Quote
  #95  
Old 11-04-2015, 04:37 PM
c4170001 c4170001 is offline
Junior Member
 
Join Date: Jan 2015
Posts: 28
c4170001 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by pro88 View Post
Making progress. Reinstalled rtpmdump and now have the following error.

Unhandled rejection TypeError: Object #<Object> has no method 'statsAsync'
at /home/pi/capturebate-node/main.js:45:13


It seems Node doesn't appear to support fs.statsAsync, only fs.statAsync.. but that doesn't work either (NetStream.Play.Failed)!
Are you using Node 4.0? After installing all the requirements, it should work straight away. That's the only thing that comes to mind.
Reply With Quote
  #96  
Old 11-06-2015, 07:13 AM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by c4170001 View Post
Are you using Node 4.0? After installing all the requirements, it should work straight away. That's the only thing that comes to mind.
Yes 4.2.1.

I've decided to use an older version of capturebate-node from the repository - which is allowing further progress but rtmpdump is failing with the following error:
DEBUG: Property: <Name: level, STRING: error>
DEBUG: Property: <Name: code, STRING: NetStream.Play.Failed>
DEBUG: Property: <Name: description, STRING: security>
DEBUG: Property: <Name: clientid, NUMBER: 940681682.00>

I've tried installing both precompiled rtmpdump (ksv) and patching the main rtmpdump version - and both have the security error.

Really stuck on this one and not sure how to proceed. Any help appreciated
Reply With Quote
  #97  
Old 11-06-2015, 11:15 AM
c4170001 c4170001 is offline
Junior Member
 
Join Date: Jan 2015
Posts: 28
c4170001 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by pro88 View Post
Yes 4.2.1.

I've decided to use an older version of capturebate-node from the repository - which is allowing further progress but rtmpdump is failing with the following error:
DEBUG: Property: <Name: level, STRING: error>
DEBUG: Property: <Name: code, STRING: NetStream.Play.Failed>
DEBUG: Property: <Name: description, STRING: security>
DEBUG: Property: <Name: clientid, NUMBER: 940681682.00>

I've tried installing both precompiled rtmpdump (ksv) and patching the main rtmpdump version - and both have the security error.

Really stuck on this one and not sure how to proceed. Any help appreciated
I've had that problem before. Try downloading the source, patching it and then compiling it. Once you've done that, cd into the librtmp folder (inside the RTMPDump source folder, e.g. /root/rtmpdump/librtmp), and enter these commands:

Code:
cp librtmp.so.1 /usr/lib

cp librtmp.so.1 /usr/lib64

cp librtmp.so.1 /lib

cp librtmp.so.1 /usr/lib/x86_64-linux-gnu
Tested on a brand new instance of Debian 8 x64 and works perfectly.
Reply With Quote
  #98  
Old 11-08-2015, 07:14 AM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Thanks for your suggestion. Tried but unfortunately still have the same issue. I'm running Debian 8 (RASPBIAN) on the Raspberry Pi.

Any other ideas?

Quote:
Originally Posted by c4170001 View Post
I've had that problem before. Try downloading the source, patching it and then compiling it. Once you've done that, cd into the librtmp folder (inside the RTMPDump source folder, e.g. /root/rtmpdump/librtmp), and enter these commands:

Code:
cp librtmp.so.1 /usr/lib

cp librtmp.so.1 /usr/lib64

cp librtmp.so.1 /lib

cp librtmp.so.1 /usr/lib/x86_64-linux-gnu
Tested on a brand new instance of Debian 8 x64 and works perfectly.
Reply With Quote
  #99  
Old 11-08-2015, 10:25 AM
c4170001 c4170001 is offline
Junior Member
 
Join Date: Jan 2015
Posts: 28
c4170001 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by pro88 View Post
Thanks for your suggestion. Tried but unfortunately still have the same issue. I'm running Debian 8 (RASPBIAN) on the Raspberry Pi.

Any other ideas?
Not really... thought that would work, it always does for me on Linux. I can only suggest flashing a fresh Raspbian image, installing only what is required to build the sources, then doing what I said on my previous post. Could be possible that there's something wrong because of your previous failed attempts.

For reference, I managed to get RTMPDump working on my Pi (Raspbian) using this method.

Last edited by c4170001 : 11-08-2015 at 12:07 PM.
Reply With Quote
  #100  
Old 11-10-2015, 04:27 AM
pro88 pro88 is offline
Junior Member
 
Join Date: Oct 2015
Posts: 6
pro88 is on a distinguished road
Default

Re: Automated Chaturbate Recording Under Linux


Quote:
Originally Posted by c4170001 View Post
For reference, I managed to get RTMPDump working on my Pi (Raspbian) using this method.
Please check your PMs
Reply With Quote
Reply Post New Thread
Tags: , , , , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 01:32 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons