Hi, people!
I would like to capture/record some video streams from o porn website and to do that i followed this tutorial:
https://www.youtube.com/watch?v=8PuUnQCS7DQ
So, i'm using Debian Wheezy last version, and i downloaded Wireshark, VLC and rtmpdump. So, take a look at the "Stream Content" option of wireshark.
Quote:
WS.b...^...................connect.?..........app. ..cameraprive_main/6188..flashVer...LNX 11,2,202,425..swfUrl..Fhttps://assets.cameraprive.com/chat/fla.shchat/ViewerApp.swf?1418609370..tcUrl..7rtmp://dolphin.cameraprive.com.br/cameraprive_main/6188..fpad....capabilities.@m.........audioCodecs. @.........videoCodecs.@o.......
videoFunction.?.........pageUrl..#http://cameraprive.com/br/room/duda....093... public.. 3d4cc993.58b21581f64c088d2ab6a6cd................& %..............&%....J).........&%................ ................_result.?..........fmsVer...FMS/4,5,5,4013..capabilities.@o........mode.?......... ....level...status..code...NetConnection.Connect.S uccess..description...Connection succeeded...objectEncoding...........data.......ve rsion..
4,5,5,4013....................
chatAllowance.............0...............createSt ream.@........B.....
..........
..............._result.@.........?.......C.....".. ..askForNumberOfCameras..........C..........ask_so ng..........C.........
initializeSpy..........C..........getTopic.@...... .................play.............cam1..........
......!........setCameraNo...........?............ ."........changeStatus.............public......... ......_result
|
So, looking for something that begins with rtmp:// i found this:
Quote:
rtmp://dolphin.cameraprive.com.br/cameraprive_main/6188
|
Then this is how i tried to capture/record the video and the output:
Quote:
claudio@claudiogc:~$ rtmpdump -v -r "rtmp://dolphin.cameraprive.com.br/cameraprive_main/6188" | vlc -
VLC media player 2.0.3 Twoflower (revision 2.0.2-93-g77aa89e)
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
WARNING: You haven't specified an output file (-o filename), using stdout
Connecting ...
[0xebb108] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
WARNING: HandShake: client signature does not match!
INFO: Connected...
ERROR: rtmp server sent error
ERROR: rtmp server requested close
[0xef0238] main stream error: cannot pre fill buffer
|
Another try:
Quote:
claudio@claudiogc:~$ rtmpdump -r "rtmp://dolphin.cameraprive.com.br/cameraprive_main/6188" -o test.mpg
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
WARNING: HandShake: client signature does not match!
INFO: Connected...
ERROR: rtmp server sent error
ERROR: rtmp server requested close
|
How can i do what i want?
Thanks!