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
  #591  
Old 01-12-2016, 01:58 AM
Vanness Vanness is offline
Junior Member
 
Join Date: Nov 2015
Posts: 2
Vanness is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


Hi Asudem, thanks for your work!
But how can I stop a recording? Really need a quick help page in the program
Reply With Quote
  #592  
Old 01-14-2016, 11:57 AM
betoso01 betoso01 is offline
Junior Member
 
Join Date: Apr 2011
Posts: 6
betoso01 is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


I was eager to test the MFCRecorder Continued v1005 , but Avira antivirus detected a trojan called Confuser.943616 . Nevertheless I wonder if it's safe to use the program.
Reply With Quote
  #593  
Old 01-14-2016, 03:31 PM
thefan thefan is offline
Junior Member
 
Join Date: Jul 2010
Posts: 22
thefan is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


Most likely a false positive. Haven't used the program, but most programs like this get detected by antivirus to be trojans or viruses.
Reply With Quote
  #594  
Old 01-14-2016, 11:05 PM
morebull morebull is offline
Junior Member
 
Join Date: Jan 2016
Posts: 5
morebull is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


William Haley from flirt4free please
Reply With Quote
  #595  
Old 01-16-2016, 04:20 PM
betoso01 betoso01 is offline
Junior Member
 
Join Date: Apr 2011
Posts: 6
betoso01 is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


Quote:
Originally Posted by thefan View Post
Most likely a false positive. Haven't used the program, but most programs like this get detected by antivirus to be trojans or viruses.
but the Avira did not detect any trojan or virus in the original MFCRecorder.
Reply With Quote
  #596  
Old 01-26-2016, 01:45 PM
cuteskater cuteskater is offline
Junior Member
 
Join Date: Dec 2015
Posts: 11
cuteskater is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


Hey AnonCapper, thx for sharing your downloader.

But i think the best tools are these 2

Internet Downloadmanager

TubeTiger

Regulary Updated and records all.

Internet Downloadmanager even records cam4 the privates shows too.

I would love to see a tool who can record mfc and cb privates too.
Reply With Quote
  #597  
Old 01-30-2016, 05:21 AM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


For those who use MFCRecorder and have many folders from models on the recording folder and are anoyed to have to seek all those folders to see the recordings, I have created a batch file to help.

Put this code on a bat (ex: "_Move.bat") in the "Recordings" folder, this will move any TS (not in use/record) into the "Recordings" folder.

Code:
@ECHO OFF

FOR /D %%D IN (*) DO (
	FOR %%F IN ("%%D"\*.ts) DO (
		IF "%%D" NEQ "OK" (
			ECHO -----------------------------------------------------------------------------
			ECHO "%%~nxF"
			move "%%~fF" "%~dp0"
		)
	)
)

ECHO All done!
pause
Then I have a folder called "OK" that I put all the TS that I want to convert to MP4.

Then use this other batch to convert all TS to MP4, this must be on the OK folder, will delete the original TS file if the convertion to MP4 was successfull, ffmpeg must be on the same folder or the path must be added.
The destination for the MP4 can also be edited (change "." in savedir for the destination folder).

Code:
@ECHO OFF

SET savedir=.
FOR %%A IN (*.ts) DO (
CALL :CONVERT "%%A"
)
GOTO END

:CONVERT
ECHO -------------------------------------------------------
ECHO - Converting %1...
SET input=%1
SET input=%input:~1%
SET output=%savedir%\%input%
SET output="%output:~0,-3%mp4"

ECHO Converting to MP4...
ffmpeg.exe -i %1 -strict experimental -c copy -bsf:a aac_adtstoasc %output%


call :setsize %output%
IF %size% LSS 2048 (
	DEL %output%
	ECHO:
	ECHO %output%
	ECHO:
	ECHO Convertion failed!
	ECHO:
	GOTO :eof
) ELSE (
	DEL %1
	ECHO:
	ECHO %output%
	ECHO:
	ECHO Convertion done!
	ECHO:
	GOTO :eof
)

:setsize
SET size=%~z1
GOTO :eof

:END
ECHO -------------------------------------------------------
ECHO:
ECHO All done!
ECHO ON

@PAUSE
Reply With Quote
  #598  
Old 02-18-2016, 04:41 AM
rambus8 rambus8 is offline
Junior Member
 
Join Date: Feb 2015
Posts: 4
rambus8 is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


hi all,
i'm trying to make an app with visual studio by myself, but i have a problem.

using ffmpeg the command is:
ffmpeg -i "http://videoXXX.myfreecams.com:1935/NxServer/mfc_ModelID.f4v_aac/playlist.m3u8" -c copy "myOutput.ts"

this is basically a static string, the only thing that changes is the XXX number,
which changes each time the model starts a new broadcast.

so...can anyone know where I have to look to find this XXX number ?

for example for the status of a model I can watch inside the html of the profile page with httpwebresponse and
webrequest. Is there a place where I can look to find this XXX number ?

thanks.


anyway....also HitmanPro reports MFCRecorderContinued as a trojan (Trojan.GenericKD.2944071)
Reply With Quote
  #599  
Old 02-19-2016, 10:58 AM
sillyfooly sillyfooly is offline
Junior Member
 
Join Date: Apr 2015
Posts: 4
sillyfooly is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


rtmp://video410.myfreecams.com/NxServer/mp4:mfc_120940140.f4v


how to see this link ?
i use vlc player
Reply With Quote
  #600  
Old 02-26-2016, 10:44 AM
sillyfooly sillyfooly is offline
Junior Member
 
Join Date: Apr 2015
Posts: 4
sillyfooly is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


i have go to private show and get link

rtmp://video462.myfreecams.com/NxServer/mp4: pvt_220517810_369183466.f4v


how to record it when out of private room ?
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 10:47 AM.


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