home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Talk
Simple way to transcode TS into MPG2
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="tatus" data-source="post: 231120" data-attributes="member: 47754"><p>Hi there,</p><p></p><p>after having received so much support from all of you, I would like to share something that I implemented today. I use the server-client based TV engine 3 (TVE3), and I quickly realized that MPG recording is broken, and that I had to use TS files. This has not been fixed by today. Then I found out that the TV recordings compression feature that MP has built in also does not work together with TVE3 and its TS files.</p><p></p><p>I now have the problem that I am using Tmpgenc to cut and build DVDs from my recordings, and that it does not like the TS files. It uses some 30 minutes to import a file, and it takes another 30 minutes when clicking once (!) at the position slider in the editing dialog...</p><p></p><p>So I needed a way to transcode, or better to say, re-mux the TS files into normal MPG files.</p><p></p><p>I found out that the free VLC player can do this very smart and simple, and it even supports batch mode.</p><p></p><p>So I wrote a small Windows .BAT file that I hope can be useful by for you:</p><p></p><p>@echo off</p><p>FOR %%I IN (*.ts) DO (</p><p>echo Transcoding %%~nI.ts ...</p><p>"C:\Programme\VideoLAN\VLC\vlc" "%%~nI.ts" --sout #std{access=file,mux=ps,url="%%~nI.mpg"} vlc:quit</p><p>if exist "%%~nI.mpg" del "%%~nI.ts"</p><p>)</p><p></p><p>Just be careful, the script deletes the original TS file after having processed it, and VLC allows closing it before the process is completed, which would result in data loss.</p><p></p><p>Regards</p><p>Frank</p></blockquote><p></p>
[QUOTE="tatus, post: 231120, member: 47754"] Hi there, after having received so much support from all of you, I would like to share something that I implemented today. I use the server-client based TV engine 3 (TVE3), and I quickly realized that MPG recording is broken, and that I had to use TS files. This has not been fixed by today. Then I found out that the TV recordings compression feature that MP has built in also does not work together with TVE3 and its TS files. I now have the problem that I am using Tmpgenc to cut and build DVDs from my recordings, and that it does not like the TS files. It uses some 30 minutes to import a file, and it takes another 30 minutes when clicking once (!) at the position slider in the editing dialog... So I needed a way to transcode, or better to say, re-mux the TS files into normal MPG files. I found out that the free VLC player can do this very smart and simple, and it even supports batch mode. So I wrote a small Windows .BAT file that I hope can be useful by for you: @echo off FOR %%I IN (*.ts) DO ( echo Transcoding %%~nI.ts ... "C:\Programme\VideoLAN\VLC\vlc" "%%~nI.ts" --sout #std{access=file,mux=ps,url="%%~nI.mpg"} vlc:quit if exist "%%~nI.mpg" del "%%~nI.ts" ) Just be careful, the script deletes the original TS file after having processed it, and VLC allows closing it before the process is completed, which would result in data loss. Regards Frank [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Talk
Simple way to transcode TS into MPG2
Contact us
RSS
Top
Bottom