hi all,
first of all, the right irc channel is on us.ircnet.org #transcode.
i have a question about cutting (-c) parts of a video and audio file.
here's what i do for taking a part of a quicktime jpeg video:
transcode -i original.mov -P 1 -c 1000-1200 -y mov, -o cut.mov
is this perfect :) ?
then i want to cut a Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
that i extracted with transcode using (-a 0 -N 0x1 -y wav). so i do:
transcode -i original.wav -x null,raw -c 1000-1200 -N 0x1 -y null,wav -o
cut.wav
[transcode] A: import format | PCM in RIFF data, WAVE (module=raw)
[transcode] A: import format | 0x1 PCM [48000,16,2]
192000 kbps
[transcode] A: export format | 0x1 PCM [48000,16,2]
192000 kbps
transcode] critical: audio format not supported by import module
[transcode] critical: failed to init import modules
[transcode] critical: plug-in initialization failed
if i removed -P 2 it works but:
[transcode] A: export format | 0x1 PCM [48000,16,2] 1536
kbps
any idea?
pat