[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bino-list] questions(I am looking forward to your reply)
From: |
Martin Lambers |
Subject: |
Re: [Bino-list] questions(I am looking forward to your reply) |
Date: |
Tue, 27 Nov 2012 07:23:24 +0100 |
Hi!
On Tue, 27 Nov 2012 13:59:25 +0800 (CST), xlzhang wrote:
> Dear Martin!
> I want to start the Bino from command line ,and do a
> interactive control. such as
> $ bino --read-commands /path/to/script.txt --no-gui
> $ bino --audio-mute
> The first cmd is OK, but the second is invalid.
> Please give some advices, how can I control the bino when it
> started in the cmd line ,thanks!
For interactive control, you need to write all commands to a FIFO, so
that Bino can keep reading them. Example:
$ mkfifo /tmp/bino-control
$ bino --read-commands /tmp/bino-control --no-gui
$ echo 'open /tmp/video.webm' >> /tmp/bino-control
$ echo 'toggle-play' >> /tmp/bino-control
$ echo 'toggle-audio-mute' >> /tmp/bino-control
$ echo 'quit' >> /tmp/bino-control
Martin
- Re: [Bino-list] questions, xlzhang, 2012/11/08
- Re: [Bino-list] questions, xlzhang, 2012/11/08
- Re: [Bino-list] questions, Martin Lambers, 2012/11/08
- Re: [Bino-list] questions, xlzhang, 2012/11/14
- [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/20
- Re: [Bino-list] questions(I am looking forward to your reply), Martin Lambers, 2012/11/20
- Re: [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/21
- Re: [Bino-list] questions(I am looking forward to your reply), Martin Lambers, 2012/11/22
- Re: [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/24
- [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/27
- Re: [Bino-list] questions(I am looking forward to your reply),
Martin Lambers <=
- Re: [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/27
- Re: [Bino-list] questions(I am looking forward to your reply), Martin Lambers, 2012/11/27
- Re: [Bino-list] questions(I am looking forward to your reply), xlzhang, 2012/11/28