I use Project X to demux DVB radio broadcasts to MP2 successfully, but can’t get it to work in batch mode in the way I’d like. If I drag a bunch of files into Project X it demuxes them all into one output file. How do I get it to output the files individually? Or is there a better tool for the job.
+ Reply to Thread
Results 1 to 2 of 2
-
-
You can use something else to call ProjectX for each file via the command line.
For example, here's a simple batch file.
@echo off
for %%i in (%1) do (
echo ----------------------------------------------------------
echo demuxing stream %%i to MP2 %%i.mp2
echo.
if exist %%i.mp2 echo %%i.mp2 already exists - skipping.
if not exist %%i.mp2 "c:\Program Files\ProjectX_0.90.4.00\ProjectX.exe" -demux %%i -name %%i.mp2
)
Save in a file called px.cmd and call with px *.mpa (or whatever extension your captured files have).
That batch file is very simple and could be greatly improved. For streams captured from my DVB-T card I wrote a C program to call pvastrumento in a similar way, but unfortunately I can't get pvastrumento to process the files produced by my DVB-S hardware.
Similar Threads
-
DVB-S/DVB-S2 Satellite Receiver with direct HD,SD/SDI output not HDMI
By rahemeen in forum DVB / IPTVReplies: 1Last Post: 19th May 2011, 05:38 -
All-in-one Batch demux FLV -> mux mp4?
By gaikokujinkyofusho in forum Video ConversionReplies: 2Last Post: 19th Jan 2011, 23:34 -
How to convert DVD project to Blu-Ray project??
By zentsang in forum Authoring (Blu-ray)Replies: 0Last Post: 9th Jul 2010, 17:08 -
Demux DVB-S HD H264/AAC HE
By erbipjr in forum DVB / IPTVReplies: 3Last Post: 3rd Sep 2009, 14:48 -
Captured dvb-s dvb-t mpeg video to DVD
By tonut in forum Authoring (DVD)Replies: 6Last Post: 7th Sep 2007, 07:02