Is there a way to play a video while it is being captured to file?
For instance, I set a capture streaming to file, then I want to start another VLC instance and start playing the video. It doesn't work. I am wondering if there is a way to set the capturing instance to open the file not locked, so other instances of the player can begin playing the file. Or maybe I am just looking at this all wrong.
----------------
Yes, there IS YOU CAN DO IT !!!
I'm writing a procedure who's growing every day, but this is the core batch based on the italian IPTV La7:
Here is my ViewLa7.bat:
---------------- cut here ----------------
@echo off
Set NetStream="mms://vmedia.tin.it/LA7-600K"
Set FileLog="C:\TMPWORK\LA7-600K_live512k.AVI"
@echo Start recording on file: %FileLog%
Start C:\Programs\VideoLAN\VLC\vlc.exe %NetStream% :sout=#transcode{vcodec=mp1v,vb=512,scale=1,acodec=mpga,ab=96,channels=2}:duplicate{dst=std{access=file,mux=ts,url=%FileLog%}}
pause
@echo Starting second instance of VLC to watch free of browsing
@echo PLEASE WAIT SOME SECONDS that connection is established!!
@echo then push ENTER to go on.
Start C:\Programs\VideoLAN\VLC\vlc.exe --intf skins2 %FileLog%
---------------- cut here ----------------
This is very nice and the *ONLY* application I found to record and watch @ the same time a TV and being able to move RR and FF as I like. The only problem is I'm not able to jump 1 minute FF or 5 minutes FF or RR as the mpeg1 stream is not yet indexed. But I can move with just the cursor which is enough.
Switching to the SKINS2 interface, you can watch at the cursor automatic UPDATING itself because of the arriving streaming! It's really cool. I don't know why the default interfaces doesn't show up unless the AVI file is indexed. Instead with SKINS2 the cursor is always present (except with ASF unindexed).
At the moment I'm writing some win32 vbscript code (sorry, don't have and don't know visualbasic) to automate stream-line falls and auto-recover that seems to happen quite frequently (every 2 hours or 1.1 Gigabytes +/-) from my provider.
That's why I'm interested in knowing how to manage directly VLC with no luck untill now (I don't like ntservice solution). The procedure every time restarts a new instance of VLC untill it reaches 10 instances (otherwise it could lock my pc
for too many resources used).
If you need any more help U can reach me via LuxNews on gmail d0t com if U can rebuild my valid e-mail address
)
Luca