NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 662 663 664 665 666 … 1231 Next »
what tool to split >3 hr recordings?

 
  • 0 Vote(s) - 0 Average
what tool to split >3 hr recordings?
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#1
2006-12-01, 01:18 AM
is there free tool do you use to split long mpg recordings (such as a 210 minute college football game)? i.e. u'd prob record in 'nedium' mode or what cbr value would u use? and then divide into 2 4.7 gb dvd's
wannabepvr
Offline

Senior Member

Posts: 635
Threads: 131
Joined: Sep 2005
#2
2006-12-01, 04:29 AM
Is that 30 minutes of play + 180 minutes of commercials? Rolleyes

- If so Comcut might be an option.
http://forums.nextpvr.com/showthread.php...ght=comcut

- Otherwise I have used TMPGenc for small stuff (cut - under the 'tools' menu) but not for anything this big. I don't know how it would go.

http://www.tmpg-inc.com/
Core2-E2180, 1G RAM, 1Gb-5450 Silent, 2Tb +300g HDDs.
Three tuners: [SIZE=2][SIZE=1]Twinhan DVB-T x 1, Hauppauge Nova 500T (dual)
[/SIZE][/SIZE]
DTB Digital SD + HD content (PAL-MPEG2-AC3).
Custom case made very quiet. Zalman CPU cooler.
Sits in rack with other HiFi.

ParaLED to show tuner activity.

Display: 42" 1920x1080p Panasonic Plasma

1x wired MVP
1x PC client
[URL="http://web.aanet.com.au/media/"]
[/URL]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#3
2006-12-01, 04:48 AM
video-redo is the thing for you...it even has it's own simple commercial detector Smile
i've found it to be the best thing for quick edits and cutting of shows...very nice interface and does a nice job at the cuts...it's pay, but very nice for this sort of thing..[and not too much $]

or you could use mencoder and just give it a start and stop time and do a 'copy' for codec...[free]
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
Zathras
Offline

Member

Posts: 97
Threads: 13
Joined: Oct 2006
#4
2006-12-01, 10:12 AM
The answer is it depends...

Are you looking to divide the files and then (for archive purposes) then join them later into one coherent file?

If so I have had great success with the freeware HJsplit

http://www.freebyte.com/hjsplit/#win32

You can define the split file size to suit your needs and join the files later for viewing.

Hope this helps.

Regards,

Kevin
GBPVR v1.4.7 ~ Nvidia GF 7300
Pentium D 2.80GHz ~ Windows 7
HVR-1800 ~ 1 GB RAM ~1 GB Network LAN
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#5
2006-12-01, 12:03 PM
pBS Wrote:video-redo is the thing for you...it even has it's own simple commercial detector Smile
i've found it to be the best thing for quick edits and cutting of shows...very nice interface and does a nice job at the cuts...it's pay, but very nice for this sort of thing..[and not too much $]

or you could use mencoder and just give it a start and stop time and do a 'copy' for codec...[free]

well, can you post a sample code?
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#6
2006-12-01, 01:55 PM
i basically just want to put the a large mpg file such as movie.mpg that's 7 gb.

Split int into a 4.5 gb chuck and 2.5 gb chunk to fit on two discs.

Burn the disk.

and be done.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#7
2006-12-01, 05:29 PM (This post was last modified: 2006-12-01, 05:38 PM by pBS.)
hmmm,it can only cut on a time so you'll have to figure out how much time you'll get on the first disc...or you could just devide the total time by 2 and use that..
Code:
ffmpeg -i "%~1" -t %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-1%~x1"
ffmpeg -i "%~1" -ss %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-2%~x1"
use: make it a batch file...say..cut.bat
cut.bat "movie.mpg" 1:30:00
-would cut the movie at 1hr. 30 mins..
giving you movie-1.mpg and movie-2.mpg
Smile
forgot ffmpeg can do too...and you already have it...Big Grin
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#8
2006-12-02, 02:13 AM
pBS Wrote:hmmm,it can only cut on a time so you'll have to figure out how much time you'll get on the first disc...or you could just devide the total time by 2 and use that..
Code:
ffmpeg -i "%~1" -t %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-1%~x1"
ffmpeg -i "%~1" -ss %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-2%~x1"
use: make it a batch file...say..cut.bat
cut.bat "movie.mpg" 1:30:00
-would cut the movie at 1hr. 30 mins..
giving you movie-1.mpg and movie-2.mpg
Smile
forgot ffmpeg can do too...and you already have it...Big Grin

neat...i'll have to try it. is it dvd-compliant?

i posted same question in dvdrhelp forum so i'll update u guys on if they had any other suggestions. dunno if mencoder is more reliable or ffmpeg.

=======================================================
based on this wiki code: http://en.wikipedia.org/wiki/MEncoder:

mencoder -ovc copy -oac copy -ss 0 -endpos 700mb -o movie_part1.avi movie.avi

as well as code from one of the comskip/comclean batch files....


my code is like this:


==================

split-1sthalf.bat

"c:\program files\mplayer\mencoder" -ovc copy -oac copy -of mpeg -ss 0 -endpos 4500mb -o "movie_part1.mpg" "movie.mpg"

==================

split-2ndhalf.bat


"c:\program files\mplayer\mencoder" -ovc copy -oac copy -of mpeg -ss 4490mb -endpos 8000mb -o "movie_part2.mpg" "movie.mpg"

==================

this assumes that mencoder is stored in program files; that your movie is movie.mpg, and that it's 8000mb.

my question is if anyone knows how to create a 1step batch program that will ask for input of file name/directory; find the file size or ask to manually input file size; divide it 2 to split between two dvd-r's w/ some overlapping time (i.e. 3s); and output the result as two new files.

or, similar idea as above, but drag a mpg to batch file and it splits in two.
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#9
2006-12-02, 02:16 AM
pBS Wrote:hmmm,it can only cut on a time so you'll have to figure out how much time you'll get on the first disc...or you could just devide the total time by 2 and use that..
Code:
ffmpeg -i "%~1" -t %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-1%~x1"
ffmpeg -i "%~1" -ss %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-2%~x1"
use: make it a batch file...say..cut.bat
cut.bat "movie.mpg" 1:30:00
-would cut the movie at 1hr. 30 mins..
giving you movie-1.mpg and movie-2.mpg
Smile
forgot ffmpeg can do too...and you already have it...Big Grin

can u modify the code so that on part two, it starts of at 5s prior to the split? i.e. if 2 hr program, split occurs at 0->60:00 for first show, and 59:55-end in second file. also, is original deleted?
tunanugget
Offline

Senior Member

Posts: 262
Threads: 99
Joined: Nov 2006
#10
2006-12-02, 11:53 AM
pBS Wrote:hmmm,it can only cut on a time so you'll have to figure out how much time you'll get on the first disc...or you could just devide the total time by 2 and use that..
Code:
ffmpeg -i "%~1" -t %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-1%~x1"
ffmpeg -i "%~1" -ss %2 -target ntsc-dvd -acodec copy -vcodec copy  "%~dpn1-2%~x1"
use: make it a batch file...say..cut.bat
cut.bat "movie.mpg" 1:30:00
-would cut the movie at 1hr. 30 mins..
giving you movie-1.mpg and movie-2.mpg
Smile
forgot ffmpeg can do too...and you already have it...Big Grin

in sample of 308 mb mpg, it split it into 131mb and 148mb = 279 mb.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Live TV and recordings do not match greg in kansas 8 7,443 2013-02-22, 06:35 PM
Last Post: sub
  Can't view recordings on pc jerry430 8 7,127 2013-01-21, 07:27 PM
Last Post: jerry430
  Live TV not showing anything although recordings are OK. Pls advise. seymoria 8 5,147 2012-08-07, 05:07 PM
Last Post: ACTCMS
  CSI Miami Recordings Always In Spanish ga_mueller 6 4,948 2012-06-12, 12:41 AM
Last Post: mikeh49
  Recordings missing after switching hard drive tegat 8 5,443 2011-12-21, 03:00 AM
Last Post: tegat
  Recordings and live TV fail with TS mux dvasco 4 2,966 2011-06-22, 05:47 PM
Last Post: dvasco
  Stream errors in recordings with GBPVR seymoria 11 4,982 2011-06-19, 06:44 PM
Last Post: seymoria
  Lost all my recordings pduncan67 2 2,159 2011-02-27, 03:12 PM
Last Post: pduncan67
  Zero byte recordings chuck_2330 0 1,544 2011-02-09, 01:25 PM
Last Post: chuck_2330
  Black screen when playing back recordings gonzo90017 1 1,802 2011-01-19, 06:12 PM
Last Post: gonzo90017

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode