Sponsored Content
Full Discussion: Mplayer fifo.
Top Forums UNIX for Beginners Questions & Answers Mplayer fifo. Post 303043427 by Neo on Tuesday 28th of January 2020 11:58:15 AM
Old 01-28-2020
Cut and paste... looks just like your pastbin code, poor formatting and all Smilie :

Code:
#!/bin/bash

                              # while-menu-dialog: a menu driven system information program

                              DIALOG_CANCEL=1
                              DIALOG_ESC=255
                              HEIGHT=0
                              WIDTH=0

                              display_result() {
                                dialog --title "$1" \
                                  --no-collapse \
                                  --msgbox "$result" 0 0
                              }

                              while true; do
                                exec 3>&1
                                selection=$(dialog \
                                  --backtitle "" \
                                  --title "" \
				  --begin 1 1 \
                                  --clear \
                                  --cancel-label "Exit" \
                                  --menu "Please select:" $HEIGHT $WIDTH 4 \
                                  "1" "  Change channel to previous  " \
                                  "2" "  Change channel to next      " \
                                  "3" "  Custom                      " \
                                  2>&1 1>&3)
                                exit_status=$?
                                exec 3>&-
                                case $exit_status in
                                  $DIALOG_CANCEL)
                                    clear
                                    echo "Program terminated."
                                    exit
                                    ;;
                                  $DIALOG_ESC)
                                    clear
                                    echo "Program aborted." >&2
                                    exit 1
                                    ;;
                                esac

                                case $selection in
                                  0 )
                                    clear
                                    echo "Program terminated."
                                    ;;
                                  1 )
                                    result=$(echo "tv_step_channel -1" > /tmp/mplayer-control)
                                    ;;
                                  2 )
                                    result=$(echo "tv_step_channel 1" > /tmp/mplayer-control)
                                    ;;
                                  3 )
                                    if [[ $(id -u) -eq 0 ]]; then
                                      result=$(echo "tv_set_channel MyNetTV" > /tmp/mplayer-control)
                                    else
                                      result=$(echo "tv_set_channel MyNetTV" > /tmp/mplayer-control)
                                    fi
                                    ;;
                                esac
                              done

 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help me: Divx with MPlayer

Hi, I'm a beginner in linux :( I wanna play divx with MPlayer. I have mdk8.1 and I can't install MPlayer because I have gcc 2.96 I need upgrade my gcc to 2.95.2 or 2.95.4 Anyone can say me how do i do to uninstall gcc-2.96 and install gcc-2.95.2. Can you give me the exactly url to... (1 Reply)
Discussion started by: mercutio
1 Replies

2. Linux

Help cannot install mplayer

whenever i trty to install mplayer or for that matter any video player i have 2 types of error 1.error while loading shared libraries: libaa.so.1: cannot open shared object file: No such file or directory 2.error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No... (1 Reply)
Discussion started by: wojtyla
1 Replies

3. Programming

how to use fifo

hi, I have a problem. I've done a lil program which gets from the server the given persons username a personal folder. I made it with a pipe calling popen with a command, but how can i make the same thing using fifo. I make the fifo with mkfifo() func. and than what. How do I tell the sertver using... (3 Replies)
Discussion started by: atticus
3 Replies

4. UNIX for Dummies Questions & Answers

Problem with mplayer

Can someone help with following problem? I'm trying to watch the stream video. mplayer SRTV - Main Air MPlayer SVN-r24130 (C) 2000-2007 MPlayer Team CPU: AMD Sempron(tm) Processor 2800+ (Family: 15, Model: 44, Stepping: 2) CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1... (1 Reply)
Discussion started by: mirusnet
1 Replies

5. Solaris

mplayer on soalris

Hi all ... I would like to know how to install mplayer on solaris 10 i have been trying to understand it through the docs on their website but didnt get it that well.. So if anyone can give me step by step instructions to install it ..i would much appreciate it!!! Thanks (3 Replies)
Discussion started by: wrapster
3 Replies

6. UNIX for Dummies Questions & Answers

mplayer snapshots

I have a script with: mplayer tv:// -tv driver=v4l2:device=/dev/video0:width=320:height=240:norm=NTSC:fps=30:noaudio:input=0 -vf screenshot -aspect 4:3 -vo xv to take .png screenshots. It now works but am not getting what the webcam sees displayed in the frame -- just snow noise. Does someone... (1 Reply)
Discussion started by: slak0
1 Replies

7. Programming

fifo

Dear friends i'm want to implement a program which one file is split into fragments by the server (by some random size) and sent to some processes, so these processes get randomly the fragments of the original file from the server, then the downloader randomly connects to some of these processes... (0 Replies)
Discussion started by: saman_glorious
0 Replies

8. Shell Programming and Scripting

mplayer problem

I have this problem using a script that uses mplayer. This is the error messages. INFO: Mplayer Log LOG: MPlayer SVN-r1.0~rc3+svn20090426-4.4.3 (C) 2000-2009 MPlayer Team LOG: mplayer: could not connect to socket LOG: mplayer: No such file or directory LOG: Failed to open LIRC support. You... (1 Reply)
Discussion started by: locoroco
1 Replies

9. UNIX and Linux Applications

FIFO

Hello , I am working on unix FIFO IPC. i have a doubt regarding that. If the fifo is updated(write()) through one process....can we able to send any signal that fifo is updated and ready to get read...to other process.?? (0 Replies)
Discussion started by: Harry443
0 Replies
ODBC_NEXT_RESULT(3)							 1						       ODBC_NEXT_RESULT(3)

odbc_next_result - Checks if multiple results are available

SYNOPSIS
bool odbc_next_result (resource $result_id) DESCRIPTION
Checks if there are more result sets available as well as allowing access to the next result set via odbc_fetch_array(3), odbc_fetch_row(3), odbc_result(3), etc. PARAMETERS
o $result_id - The result identifier. RETURN VALUES
Returns TRUE if there are more result sets, FALSE otherwise. EXAMPLES
Example #1 odbc_next_result(3) <?php $r_Connection = odbc_connect($dsn, $username, $password); $s_SQL = <<<END_SQL SELECT 'A' SELECT 'B' SELECT 'C' END_SQL; $r_Results = odbc_exec($r_Connection, $s_SQL); $a_Row1 = odbc_fetch_array($r_Results); $a_Row2 = odbc_fetch_array($r_Results); echo "Dump first result set"; var_dump($a_Row1, $a_Row2); echo "Get second results set "; var_dump(odbc_next_result($r_Results)); $a_Row1 = odbc_fetch_array($r_Results); $a_Row2 = odbc_fetch_array($r_Results); echo "Dump second result set "; var_dump($a_Row1, $a_Row2); echo "Get third results set "; var_dump(odbc_next_result($r_Results)); $a_Row1 = odbc_fetch_array($r_Results); $a_Row2 = odbc_fetch_array($r_Results); echo "Dump third result set "; var_dump($a_Row1, $a_Row2); echo "Try for a fourth result set "; var_dump(odbc_next_result($r_Results)); ?> The above example will output: Dump first result set array(1) { ["A"]=> string(1) "A" } bool(false) Get second results set bool(true) Dump second result set array(1) { ["B"]=> string(1) "B" } bool(false) Get third results set bool(true) Dump third result set array(1) { ["C"]=> string(1) "C" } bool(false) Try for a fourth result set bool(false) PHP Documentation Group ODBC_NEXT_RESULT(3)
All times are GMT -4. The time now is 08:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy