NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums General General Discussion v
« Previous 1 … 96 97 98 99 100 … 159 Next »
fastest avi to mpeg2 command line encoder?

 
  • 0 Vote(s) - 0 Average
fastest avi to mpeg2 command line encoder?
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#1
2006-04-25, 12:57 AM
im trying to reduce the speed it takes to convert files in the "my videos" burning feature, so far ive been using ffmpeg to do the converting from non mpeg files, but it takes about an hour on my 2.6 ghz machine (1280mb ram) to convert a 2 hour movie.

thats fine if your watching it while you encode, but is mencoder faster?

is there another app that is faster?

i want the quality to still be good (since burning to dvd).

also can you supply the command line/params if you know them (saving me from having to find them Smile)

oh and it would be good if you could specify the filesize, or if there was an option like -dvd that would convert a file to the correct single layer size (so you dont get a 8gb file to burn to a 4.7gb disc).

TIA
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#2
2006-04-25, 02:06 AM
in my experience mencoder is faster...but usually with less quality....seems like they're not doing some filtering that ffmpeg is...for same exact options,ffmpeg would spit out better looking files.tho slower [approx same size files]
the roots are so similar the command options are exactly the same in some instances..Smile mencoder has more options tho...! so you can make tradeoffs in quality better... [and filters galore]
by far the fastest i've seen is the ATI avivo...but it's not controllable from commandline as far as i know...[tho i made a cheap little proggy that uses it with graphedit,just have to create your profile graph first..]
using a profile, allowed 'command input.file output.file'
i'm thinking that would be a little cheasey for your app tho...
if you could automate the real gui with auto-it or something similar that might work..Smile [have it control the interface]
it's about twice as fast as any i've seen..tho it has limits on bitrates etc,it does have built in profiles and fit-to-dvd..
[and does avi,psp,ipod,etc]
if not, mencoder is the way to go...
p.s. i got my dvd menus from the comand line working Big Grin just polishing up and will post soon..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#3
2006-04-25, 02:31 AM
how much faster do you think mencoder is?

like how long on your machine does ffmpeg take per hour of divx video and how long does mencoder take?

also how large is the mencoder.exe file? i think i read somewhere its part of mplayer, which is about 7megs, and i want to include it in the my vids installer (7megs might kill my monthly bandwidth).
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#4
2006-04-25, 02:41 AM
Quote:p.s. i got my dvd menus from the comand line working just polishing up and will post soon..
cool that will save some time aswell (didnt know you were the one looking in on this, you have a different display name on my forum Smile)
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#5
2006-04-25, 02:59 AM (This post was last modified: 2006-04-25, 03:27 AM by pBS.)
i remember there was a re-quantizer out there somewhere...it works just like the dvdshrink compressor..and only on video..[but audio isn't a problem with other stuff] extremely fast...but requires de-muxed sources...
search for 'quantizer' or 'requantizer' and you should be able to find something..or 'compressed domain'..
i know there's a linux one that might be able to be ported...

it's really your best bet...completely command line...if you can find..
i'll give it a shot since i should be able to pipe that one also..Smile
let me know if you find it tho...
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#6
2006-04-25, 03:13 AM
mencoder is about 4 megs...if you get the whole mplayer mencoder package it's huge! it can be had seperately tho..for speed in fps i get about 40fps so that's about....the same...lol maybe 5-10 mins less at best..and much less quality/size..
if all you're using mplayer for is thumbnails,use ffmpeg instead..Smile
i have an ffmpeg thumbs line if you want...
Code:
fmpeg -i %1 -y -sameq -f image2 -vframes 1 -ss 30 -s 360x240 "%~n1.jpg"
the program i use to add menus to completed dvd compilation is Titlewriter..
originally made to re-title [label] dvd's for changer use..
works liike a charm and i use dvdauthor to build the dummymenu and add that to the comand line made dvd..Smile dvdauthorgui makes a nice template..lol
chapters and all... tho very simple menus..no audio/extras...just thumbnails and titles...wish i could get the show info to add...Sad any ideas?
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#7
2006-04-25, 03:17 AM (This post was last modified: 2006-04-25, 03:22 AM by reven.)
what does "titlewriter" create? (i found your friend with angel whatever on google during my searching Smile)
does it alter the .ifo file? (or whatever file it is).

also what command do you then use with dvdauthor?

ill try the ffmpeg thumbnail command but last time i tried ffmpeg it took forever to generate a thumbnail for example 1:30:00 (1 hour 30 mins), since it had to manually seek to that point.
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#8
2006-04-25, 04:39 AM
yeah that ffmpeg thumb command is already for small -ss values, but if you want to get a thumbnail for 5400 (1hour 30 mins) it takes about that long to grab it Sad
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#9
2006-04-25, 04:43 AM
hmm,the -ss option should work for that...tho i noticed that too...
[it's supposed to skip...not play till then]
mencoder probably could do it too...[thumbs]
hey,i found a re-quantizer...does whole dvd's in 15-20 mins! Big Grin
sifting thru the older versions till i have one that rocks..
seems it may be the same thing in Rejig..[same guy]
and i think Rejig has command line options...[also has mux/demux,ifo edit..]
still only works on m2v but should be nicest quality..
like dvdshrink,it has limitations on compression strength,as it's only compressing dct...[usually around 60-70% of orig. file] but Blazing fast! Smile and pretty much perfect quality..i think it's like 64k .exe too...lol

for dvdauthor i just use it the way i told you before to make regular title only from command line, dvdauthor -o -t title.mpg then dvdauthor -o -T to make toc...resulting in a playable menuless dvd...then i make a regular dvd structure with menu,and tiny dummy vob titles with the .xml method..
then i use titlewriter to inject that menu into the original large movie dvd structure...yes,it looks at the original and edits the structure accordingly..
just allows me to make menu seperately from titles..both with dvdauthor..
menus with the .xml method as it's easier..Smile [like you]
i make the dummy vob's about 5 secs long with chapters every .2 secs..lol
and make the large movies with chapters where i want them..then titlewriter matches them up...
all graphics and thumbs done with gm and muxing with regular stuff...
i'll post a config.xml [main] and menu1.xml that i use to make seperate titleset titles with the xml..
you'd have to adjust to your background..
will post the compressor soon as i make sure it works and check out rejig..
oh,and have source for re-quant and rejig...Big Grin
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#10
2006-04-25, 04:52 AM
that method sounds messy, and putting me off trying to do a hack for it....

i really want to do the piping from encoder straight to dvdauthor since it saves time and space (mostly time i care about, 200gbs hdd with always 30 gbs free on my end).

dvdauthor doesnt have a forum or anything so i cant really ask the developer about this, and there hasnt be any development on it in over a year...

it would be nice if there was a
dvdauthor -M menu.xml
switch, would make life easier.....
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Windows 10 Preview removes command prompt p37307 13 5,792 2016-12-10, 03:49 AM
Last Post: johnsonx42
  get working/batch/file dirs from one line[any dir of it's path too!] pBS 17 12,797 2013-11-05, 12:03 PM
Last Post: pBS
  <Enter> to drop a line in forum posting screen no loger works? jksmurf 3 2,479 2013-09-28, 09:44 AM
Last Post: whurlston
  H/W Quick sync transcoding from the command line. mvallevand 2 3,590 2013-03-23, 08:25 AM
Last Post: pBS
  Running a javascript command from Windows Address Bar FOLLOWING the Web address? jksmurf 35 12,777 2012-11-27, 12:53 PM
Last Post: WG++Maker
  Convert mpeg2 ts to xvid or mkv SLR_65 5 2,566 2010-02-11, 07:03 AM
Last Post: SLR_65
  Changing Channel Line Up Numbers and Names luttrell1962 11 4,030 2010-02-04, 12:44 AM
Last Post: majortom999
  Optimal video bitrate for MPEG2 analog SDTV recording? badboyz 1 3,209 2009-10-30, 05:45 AM
Last Post: pBS
  Tuner versus Encoder question DittoMuch 3 2,025 2009-01-02, 11:21 PM
Last Post: sub
  Backing up DVDs to MPEG2? reven 24 7,348 2008-11-03, 08:59 PM
Last Post: zehd

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

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

Linear Mode
Threaded Mode