Quote:
Originally Posted by xellisss
1)Guys, thank you for your very kind help!
What does it means? KMP I think support the reading from...what?..but it doesn't work.
|
I don't use KMPlayer so i can't say whether it supports playing from stdin or not or the command syntax may be different. VLC, MPlayer or any other MPlayer based player will work. if it's working for you with VLC then why not just use VLC.
Quote:
Originally Posted by xellisss
2)Ok the batch command is ok: I tried to make one for birdcam with url
rtmpt://188.165.205.104:443/technosmart/techno10!
but this one (with the same proceedings) doesn't open VLC:
rtmpdump.exe -r rtmpt://188.165.205.104:443/technosmart/techno10! --quiet | "C:\Program Files\VideoLAN\VLC\vlc.exe" -
Is it correct?
|
I posted the command for this webcam in 2nd post of this thread.
Code:
rtmpdump.exe -r rtmp://188.165.205.104/technosmart/techno10! --quiet | "C:\Program Files\VideoLAN\VLC\vlc.exe" -
first you have to make sure that rtmpdump is able to download the stream with your command line. if rtmpdump successfully starts downloading then you can watch that stream with VLC. you can use following method to confirm that your rtmp url is correct or not.
Replace this
Code:
rtmpdump.exe -r rtmp://188.165.205.104/technosmart/techno10! --quiet | "C:\Program Files\VideoLAN\VLC\vlc.exe" -
with this
Code:
rtmpdump.exe -r rtmp://188.165.205.104/technosmart/techno10! -o Test.flv
if your command line is correct rtmpdump will start downloading and will save it as Test.flv file. you can also try adding --live switch to command line if doesn't work.
Quote:
Originally Posted by xellisss
3) Is it possible to watch with VLC two or more different streaming at the same time with more file batch or dos prompt commands? (I answer to myself: yes, I opened 3 streaming from dos prompt at the same time).
Thanks again!
|
You can open as many streams as your PC's processing power and internet bandwidth allows.