|
|
2008-03-23
, 15:24
|
|
|
Posts: 202 |
Thanked: 28 times |
Joined on Jan 2008
|
#42
|
Hi,
I can't get the DVD shrink/Nokia Conservtor thing to work. I can produce VOB files (which play on VLC player fine) but when I try to put them into the Nokia convertor it says the file type isn't recognised.
So, I tried doing an ISO file- same problem.
I've also tried a few avi convertors and they come up with all this codec stuff (which I don't undetstand).
I'd appreciate any help, but I'm not very technical! I've been trying to do this for ages and am about to give up.
Many thanks
David
| The Following User Says Thank You to superstar For This Useful Post: | ||
|
|
2008-03-23
, 17:37
|
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#43
|
Read this post
| The Following User Says Thank You to GeraldKo For This Useful Post: | ||
|
|
2008-03-24
, 14:24
|
|
Posts: 24 |
Thanked: 4 times |
Joined on Jan 2008
|
#44
|
#!/bin/bash
cropval=720:576:0:0 # MASH
lsdvd |cut -c-24
typeset -i sind
echo -n "first title "; read first
echo -n "last title "; read last
echo -n "filename "; read fname
echo -n "start index "
read sind
typeset -i cnt=$((sind - 1))
for i in $(seq $first $last); do
cnt=$((cnt+1))
oname=${fname}_$(printf "%02d" $cnt).avi
echo encoding $oname
mencoder dvd://$i -dvd-device /dev/dvd -aid 129 -af volume=16:0 -o $oname \
-oac lavc -lavcopts acodec=mp3:abitrate=48 \
-ovc lavc -lavcopts vcodec=mpeg4:autoaspect:vbitrate=480 \
-vf scale=400:300,crop=400:240:0:20 \
-ffourcc DIVX \
-idx
done
| The Following User Says Thank You to slimjim For This Useful Post: | ||
|
|
2008-03-25
, 02:17
|
|
Posts: 39 |
Thanked: 4 times |
Joined on Mar 2008
|
#45
|
|
|
2008-03-25
, 02:33
|
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#46
|
Quick question - how much storage space will an average 90 minute DVD require after conversion for use on a NIT?
| The Following User Says Thank You to GeraldKo For This Useful Post: | ||
|
|
2008-03-25
, 08:09
|
|
Posts: 3 |
Thanked: 0 times |
Joined on Mar 2008
|
#47
|
|
|
2008-03-25
, 10:33
|
|
|
Posts: 880 |
Thanked: 264 times |
Joined on Feb 2007
@ Cambridge, UK
|
#48
|
|
|
2008-03-25
, 10:41
|
|
|
Posts: 2,535 |
Thanked: 6,681 times |
Joined on Mar 2008
@ UK
|
#49
|
tablet-encode --all dvd: /media/nokia-external/
|
|
2008-03-25
, 11:56
|
|
Posts: 24 |
Thanked: 4 times |
Joined on Jan 2008
|
#50
|
| The Following User Says Thank You to slimjim For This Useful Post: | ||
My only problem with V. Hub it its inability to do partial converts - from point a to b say. That unfortunately sometimes necessitates transcoding.
Last edited by directore; 2008-03-23 at 01:21.