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
MSSQL_FIELD_SEEK(3)													       MSSQL_FIELD_SEEK(3)

mssql_field_seek - Seeks to the specified field offset

SYNOPSIS
bool mssql_field_seek (resource $result, int $field_offset) DESCRIPTION
Seeks to the specified field offset. If the next call to mssql_fetch_field(3) won't include a field offset, this field would be returned. PARAMETERS
o $result - The result resource that is being evaluated. This result comes from a call to mssql_query(3). o $field_offset - The field offset, starts at 0. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Using mssql_field_seek(3) on the example for mssql_fetch_field(3) <?php // Connect to MSSQL and select the database mssql_connect('MANGOSQLEXPRESS', 'sa', 'phpfi'); mssql_select_db('php'); // Send a select query to MSSQL $query = mssql_query('SELECT * FROM [php].[dbo].[persons]'); // Construct table echo '<h3>Table structure for 'persons'</h3>'; echo '<table border="1">'; // Table header echo '<thead>'; echo '<tr>'; echo '<td>Field name</td>'; echo '<td>Data type</td>'; echo '<td>Max length</td>'; echo '</tr>'; echo '</thead>'; // Dump all fields echo '<tbody>'; for ($i = 0; $i < mssql_num_fields($query); ++$i) { // Fetch the field information, notice the // field_offset parameter is not set. See // the mssql_field_seek call below $field = mssql_fetch_field($query); // Print the row echo '<tr>'; echo '<td>' . $field->name . '</td>'; echo '<td>' . strtoupper($field->type) . '</td>'; echo '<td>' . $field->max_length . '</td>'; echo '</tr>'; // Move the internal seek pointer to the next // row in the result set mssql_field_seek($query, $i + 1); } echo '</tbody>'; echo '</table>'; // Free the query result mssql_free_result($query); ?> SEE ALSO
mssql_fetch_field(3). PHP Documentation Group MSSQL_FIELD_SEEK(3)
All times are GMT -4. The time now is 05:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy