annotate TOOLS/mpconsole @ 23510:a6c619ee9d30

Teletext support for tv:// (v4l and v4l2 only) modified patch from Otvos Attila oattila at chello dot hu Module uses zvbi library for all low-level VBI operations (like I/O with vbi device, converting vbi pages into usefull vbi_page stuctures, rendering them into RGB32 images). All teletext related stuff (except properties, slave commands and rendering osd in text mode or RGB32 rendered teletext pages in spu mode) is implemented in tvi_vbi.c New properties: teletext_page - switching between pages teletext_mode - switch between on/off/opaque/transparent modes teletext_format - (currently read-only) allows to get format info (black/white,gray,text) teletext_half_page - trivial zooming (displaying top/bottom half of teletext page) New slave commands: teletext_add_dec - user interface for jumping to any page by editing page number interactively teletext_go_link - goes though links, specified on current page
author voroshil
date Sun, 10 Jun 2007 00:06:12 +0000
parents a818bbab1525
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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