Mercurial > mplayer.hg
annotate TOOLS/mpconsole @ 23978:ef6e50c3c172
Revert setting audio output channel count for FFmpeg
The FFmpeg API needs to be fixed before this can be done sanely.
ffdca wants the desired output channel count to be set in
avctx->channels. Unfortunately it also completely fails if the requested
number of channels is not available rather than returning a different
amount (if 6 channels are requested we'd probably rather use stereo than
fail completely).
ffvorbis ignores caller-set values in avctx->channels. It writes the
channel count there once during init. This means the caller can only
set the count before init because later there would be no indication
whether the channel count in avctx reflects real output.
ffwma requires the caller to supply the encoded channel count
in avctx->channels during init or it fails. So it is not possible to
set a different number of desired output channels there before init
either.
author | uau |
---|---|
date | Thu, 02 Aug 2007 21:54:14 +0000 |
parents | a818bbab1525 |
children |
rev | line source |
---|---|
4204
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
1 #!/bin/sh |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
2 # Script to run mplayer on the console (fbdev/mga_vid/etc) without |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
3 # the console text and/or flashing cursor getting in the way. |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
4 # Written by Rich Felker. |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
5 |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
6 trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT |
7696
a818bbab1525
Fix usage for common users that may not have fbset in their path.
diego
parents:
4204
diff
changeset
|
7 res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'` |
4204
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
8 width=`echo "$res" | cut -d' ' -f2` |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
9 height=`echo "$res" | cut -d' ' -f3` |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
10 tput civis |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
11 clear |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
12 mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1 |