High Def Forum - Your High Definition Community & High Definition Resource

Go Back   High Def Forum - Your High Definition Community & High Definition Resource > General Chit Chat > The High Definition Lounge
Rules HDTV Forum Gallery LINK TO US! RSS - High Def Forum AddThis Feed Button AddThis Social Bookmark Button Groups

The High Definition Lounge Can't find a proper forum for your questions, comments, reviews, etc.? Post them here! RSS - The High Definition Lounge

Help converting BBC HD TS to SD DVD

Reply
AddThis Social Bookmark Button
 
Thread Tools
Old 07-29-2007, 01:38 PM   #1
My plasma is High Def.
 

Join Date: Jul 2007
Posts: 5
Default Help converting BBC HD TS to SD DVD

Hi Guys,

I hope i'm posting this in the correct place, seems the most relevant.

Firstly i'll just say i have no problem converting 99% of Transport Streams to SD-DVD. I know of all the required programs and settings, so i'm not new when it comes to this.

However, i have just grabbed off Usenet a TS which was recorded from the BBC (UK) HD stream.

It is a H.264 1080i stream, in a TS container. Now i have had a good look on google and found several programs/solutions on how to encode these streams. However, after several hours and program upon program, i cannot get anything to work. Here is what i have managed -

- demuxed to .mpv and .ac3 files.

Now this worked eventually using a program called xport, but from here is where my problems start.

I cannot find a MPEG-2 Encoder that will load this file, let alone re-encode it.

Cinema Craft Encoder either doesn't load it at all, or if i load it with a AviSynth Script it crashes. The same goes for any other program. They crash (stop responding) when i try to add the file.

I have had both the CoreAVC codec and ffdshow codec installed, and it hasn't worked with either.

From further research i have also found that the BBC HD stream uses MBAFF Interlacing, which is maybe causing a problem?


My PC:
XP SP 2
Intel Celeron D 2.8 Ghz
1.18GB Ram
Not sure on Video card, but it's one that came in my PC, bought 1 1/2 years ago.

So does anyone know of a way to do this?

Thanks

Last edited by SimonKilmore; 07-29-2007 at 01:43 PM.
SimonKilmore is offline   Reply With Quote
Old 07-30-2007, 02:03 AM   #2
My plasma is High Def.
 

Join Date: Jul 2007
Posts: 5
Default

Anyone?
SimonKilmore is offline   Reply With Quote
Old 07-30-2007, 07:31 AM   #3
.
 

Join Date: Jun 2007
Posts: 325
Default

Have you tried the latest version of ffmpeg?

http://www.videohelp.com/forum/archi...e-t305302.html

http://www.videohelp.com/tools/ffmpeg
mschupp is offline   Reply With Quote
Old 07-31-2007, 11:09 AM   #4
My plasma is High Def.
 

Join Date: Jul 2007
Posts: 5
Default

Right i've just got ffmpeg, but i don't know what i'm doing with it?

I've ran it and looked at various input syntax, but i've no idea what i'll be needing to put in to get what i want.

Anyone know of a script i can put into it?

Basically i have the input source PAL 1920 , and i want to output it to a DVD complient MPEG-2 with Constant Bitrate 8mbps, resized to PAL DVD 720x576.

Thanks
SimonKilmore is offline   Reply With Quote
Old 07-31-2007, 11:49 AM   #5
My plasma is High Def.
 

Join Date: Jul 2007
Posts: 5
Default

This is what my current input looks like, but it's not working, so something can't be right.

ffmpeg -i input.ts -aspect 16:9 -f m2v -s 720x576 -b 67108864 -an video.m2v

I used this docmentation to get this -

ffmpeg.mplayerhq.hu/ffmpeg-doc.html

Thanks
SimonKilmore is offline   Reply With Quote
Old 07-31-2007, 12:03 PM   #6
Avast Mateys
 

Join Date: Jan 2007
Location: Backwoods BC Canada
Age: 63
Posts: 217
Default

It's worth trying default setting till it works then changing what you need.

Syntax is far enough away from the mencoder stuff I use in Linux that I'm not much direct help. This is a useful resource I hope:

http://arrozcru.no-ip.org/ffmpeg_forum/
__________________
Sony 34XS955N HDTV - Custom HTPC Opteron 165 dual core at 2.4 GHz - Gnu/Linux-Slamd64 11.0 - Nvidia GT6600 - Twinhan 102g Satellite Card - Dual DVD burners - 0.8 terrabyte array - M-Audio Audiophile 24/96 - Sonic Frontiers SFL1 Signature (Factory modded) Preamp - Kimber Braided interconnects - Sonic Frontiers SFM75 Monoblocks - Tara Time & Space Speaker Cables - B&W Matrix 1s (the original) crossovers rebuilt (MITs) bi-wired
PenGun is offline   Reply With Quote
Old 08-04-2007, 12:14 PM   #7
My plasma is High Def.
 

Join Date: Jul 2007
Posts: 5
Default

Bump. Still having problems with this one.
SimonKilmore is offline   Reply With Quote
Old 08-04-2007, 06:22 PM   #8
.
 

Join Date: Jun 2007
Posts: 325
Default

Quote:
Originally Posted by SimonKilmore View Post
This is what my current input looks like, but it's not working, so something can't be right.

ffmpeg -i input.ts -aspect 16:9 -f m2v -s 720x576 -b 67108864 -an video.m2v

I used this docmentation to get this -

ffmpeg.mplayerhq.hu/ffmpeg-doc.html

Thanks

When you say its not working, what do you mean?
Here's the batch file line I use to go from .tp or .ts to .mpg. Its based on what HDTV2DVD uses. NOTE: some of the lines have wrapped. You'll have to modify the path to your copy of ffmpeg.exe.

::batch process MPG from TP

::Parameters - all parameters must be enclosed in quotes
:: %1=full path to .TP file
:: %2=full path to .MPG file for output
:: %3=desired average bit rate (defaults to 3000)
:: %4=desired max bit rate (defaults to 7800)
::Examples:
:: call hdtompg.bat "d:\dvr\bones\28 - The Girl in Suite 2103.tp" "C:\dvr\bones\28 - The Girl in Suite 2103.mpg" "3000" "7800"
:: call hdtompg.bat "d:\dvr\smallville\128 - Progeny.tp" "d:\dvr\smallville\128 - Progeny.mpg" "" ""

ECHO OFF

set HDTV2DVD="C:\Program Files\BadgerIT\HDTV2DVD"
set FFMPEG="%HDTV2DVD:~1,-1%\ffmpeg.exe"

set SOURCETP=%1
set SOURCETP=%SOURCETP:~1,-1%
set TARGETMPG=%2
set TARGETMPG=%TARGETMPG:~1,-1%

set BITRATE=%3
IF NOT '%BITRATE%' == '' set BITRATE=%BITRATE:~1,-1%
IF "%BITRATE%" == "" set BITRATE=3000

set MAXBITRATE=%4
IF NOT '%MAXBITRATE%' == '' set MAXBITRATE=%MAXBITRATE:~1,-1%
IF "%MAXBITRATE%" == "" set MAXBITRATE=6000

set FFMPEG_PASSLOG=c:\temp\ffmpeg.log
set FRAMERATE=30000/1001

set INTRA_MATRIX=08,08,09,11,13,13,14,17,08,08,11,12,1 3,14,17,18,09,11,13,13,14,17,17,19,11,11,13,13,14, 17,18,20,11,13,13,14,16,17,20,24,13,13,14,16,17,20 ,24,29,13,13,14,17,19,23,28,34,13,14,17,19,23,28,3 4,41
set INTER_MATRIX=08,08,08,09,09,09,09,10,08,08,09,09,0 9,09,10,10,08,09,09,09,09,10,10,10,09,09,09,09,10, 10,10,10,09,09,09,10,10,10,10,11,09,09,10,10,10,10 ,11,11,09,10,10,10,10,11,11,11,10,10,10,10,11,11,1 1,11
set STUFF=-mbd 2 -qmin 1 -mblmin 1 -lmin 1 -qsquish 1 -rc_init_cplx 500 -padtop 0 -padbottom 0 -async 50 -flags2 +sgop -deinterlace

:downsample the TP file using ffmpeg
%FFMPEG% -i "%SOURCETP%" -y -target ntsc-dvd -acodec copy -intra_matrix %INTRA_MATRIX% -inter_matrix %INTER_MATRIX% -r %FRAMERATE% -bf 2 -b %BITRATE% -maxrate %MAXBITRATE% -s 720x480 %STUFF% -pass 1 -passlogfile "%FFMPEG_PASSLOG%" "%TARGETMPG%"
%FFMPEG% -i "%SOURCETP%" -y -target ntsc-dvd -acodec copy -intra_matrix %INTRA_MATRIX% -inter_matrix %INTER_MATRIX% -r %FRAMERATE% -bf 2 -b %BITRATE% -maxrate %MAXBITRATE% -s 720x480 %STUFF% -pass 2 -passlogfile "%FFMPEG_PASSLOG%" "%TARGETMPG%"
mschupp is offline   Reply With Quote
Old 08-04-2007, 07:21 PM   #9
Avast Mateys
 

Join Date: Jan 2007
Location: Backwoods BC Canada
Age: 63
Posts: 217
Default

Nice. Ugly place to script ... well done. You are bringing back memories from long ago .

Linux is very friendly to all kinds of command line stuff, you might enjoy the difference.
__________________
Sony 34XS955N HDTV - Custom HTPC Opteron 165 dual core at 2.4 GHz - Gnu/Linux-Slamd64 11.0 - Nvidia GT6600 - Twinhan 102g Satellite Card - Dual DVD burners - 0.8 terrabyte array - M-Audio Audiophile 24/96 - Sonic Frontiers SFL1 Signature (Factory modded) Preamp - Kimber Braided interconnects - Sonic Frontiers SFM75 Monoblocks - Tara Time & Space Speaker Cables - B&W Matrix 1s (the original) crossovers rebuilt (MITs) bi-wired
PenGun is offline   Reply With Quote
Old 08-04-2007, 09:20 PM   #10
Avast Mateys
 

Join Date: Jan 2007
Location: Backwoods BC Canada
Age: 63
Posts: 217
Default

Come mschupp ...leave the dark side. The force is strong in you ... come to the light. Leave the windose wasteland to the poor unfortunate hungry ghosts who are forced to dwell there.


<^!^>
__________________
Sony 34XS955N HDTV - Custom HTPC Opteron 165 dual core at 2.4 GHz - Gnu/Linux-Slamd64 11.0 - Nvidia GT6600 - Twinhan 102g Satellite Card - Dual DVD burners - 0.8 terrabyte array - M-Audio Audiophile 24/96 - Sonic Frontiers SFL1 Signature (Factory modded) Preamp - Kimber Braided interconnects - Sonic Frontiers SFM75 Monoblocks - Tara Time & Space Speaker Cables - B&W Matrix 1s (the original) crossovers rebuilt (MITs) bi-wired
PenGun is offline   Reply With Quote
Old 08-05-2007, 11:23 AM   #11
.
 

Join Date: Jun 2007
Posts: 325
Default

Quote:
Originally Posted by PenGun View Post
Come mschupp ...leave the dark side. The force is strong in you ... come to the light. Leave the windose wasteland to the poor unfortunate hungry ghosts who are forced to dwell there.


<^!^>
Now lets not start that!

I make my meager living writing software for Windows-based systems.
mschupp is offline   Reply With Quote
Sponsored Links
Go Back   High Def Forum - Your High Definition Community & High Definition Resource > General Chit Chat > The High Definition Lounge
AddThis Social Bookmark Button
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Forum Jump

Similar Threads to Help converting BBC HD TS to SD DVD
Thread Thread Starter Forum Replies Last Post
Article on HD DVD vs. Blu-ray numbskully Blu-Ray Players 11 09-10-2009 11:11 AM
Blu-ray vs. HD DVD and DVD bruceames Blu-Ray Players 55 12-09-2007 05:51 PM
Universal to deliver 100 exclusive HD DVD movies in 2007 hmurchison High Definition Media 102 12-03-2007 10:55 AM
Email from WB (more HD DVD coming) bruceames High Definition Media 26 02-08-2007 11:11 AM
LiteOn joins HD DVD. µCOM-4 HD DVD Players and Discs 0 09-16-2006 03:09 AM


All times are GMT -6. The time now is 04:56 AM.


Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Copyright ©2004 - 2008, High Def Forum