From: jellyfish@pisem.net
To: community@altlinux.ru
Subject: Re: [Comm] Mplayer
Date: Mon, 28 Oct 2002 01:34:51 +0300
Message-ID: <20021027223451.GA17615@alex> (raw)
In-Reply-To: <200210242253.44590.noc@mail.spbnit.ru>
On Thu, Oct 24, 2002 at 10:53:44PM +0400, Sergey B. wrote:
> Народ, как сконфигурить мплеер, чтобы можно было тв_программы на нём
> смотреть??? И ещё, скажите откуда можно lame слить....
Смотреть:
$ mencoder -tv on:device=/dev/video0:driver=v4l:width=512:height=384
Кнопки:
h and k каналы
n PAL/SECAM/...
u список каналов
Если есть mencoder, то можно записывать программы примерно так:
$ mencoder -tv on:device=/dev/video0:driver=v4l:width=512:height=384: \
-oac mp3lame -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$vbitrate:vhq: \
-ofps 25 -o $file.avi
Вот скрипт ещё есть:
-----------
#!/usr/bin/perl -w
#пишет файлы вида 30.10-4.avi
$dir="/avi";
chomp($date=`date +%d.%m`);
$ext='avi';
$avifile="$dir/$date.$ext";
$width=512;
$height=384;
$vbitrate=1600; # У меня большой винт :)
if(-e "$avifile"){
do{ ++$n; }
while(-e "$dir/$date-$n.$ext");
$avifile="$dir/$date-$n.$ext";
}
system("mencoder \\
-tv on:device=/dev/video0:driver=v4l:width=$width:height=$height: \\
-oac mp3lame \\
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$vbitrate:vhq: \\
-ofps 25 \\
-o $avifile");
-----------
Ещё есть для -tv опции: channel и norm,
Пример
$ mplayer -tv on:device=/dev/video0:driver=v4l:norm=SECAM:channel=42
(У меня это М1)
$ man mplayer
искать: -tv
Список каналов можно брать из .xawtv ( если таковой имеется )
Удачи.
--
jellyfish
next prev parent reply other threads:[~2002-10-27 22:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-24 18:53 Sergey B.
2002-10-27 22:34 ` jellyfish [this message]
2002-10-28 10:02 ` Andrew Nazarkin
2002-10-28 23:41 ` jellyfish
2002-10-29 9:36 ` Andrew Nazarkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20021027223451.GA17615@alex \
--to=jellyfish@pisem.net \
--cc=community@altlinux.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git