Sponsored Content
Top Forums Shell Programming and Scripting BASH: how to launch a program with parameters Post 302175413 by cfajohnson on Thursday 13th of March 2008 11:07:30 PM
Old 03-14-2008
Quote:
Originally Posted by TinCanFury
I have a bunch of MKV movies with embedded subtitles. I'd like to extract the subtitles into their own SRT file. so I've got this basic script written:

Code:
#!/bin/bash

MOVIE=$1
echo "Original Movie: $MOVIE"
SRTFILE=${MOVIE/%mkv/srt}
echo "srt File: $SRTFILE"

TRACK=`mkvinfo "$MOVIE" | grep subtitle -B3 | grep Track\ number\:\ | sed -e 's$
#echo "Track is $TRACK"

if [[ "$TRACK" -gt "0" ]]
then
        echo "Track is: $TRACK"
        mkvextract tracks $MOVIE ${TRACK}:$SRTFILE
else
        echo "No subtitle track!"
fi

which gives me
Code:
$ ./subtitleextract.sh Ying\ Xiong\ \(Hero\).mkv 
Original Movie: Ying Xiong (Hero).mkv
srt File: Ying Xiong (Hero).srt
Track is: 3
Error: Missing track ID in argument 'Xiong'.

it should be running
mkvextract tracks Ying\ Xiong\ \(Hero\).mkv 3:Ying\ Xiong\ \(Hero\).srt
but obviously isn't.

Quote your variables:
Code:
mkvextract tracks "$MOVIE" "${TRACK}:$SRTFILE"

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to launch program though telnet

I have launched telnet on nt and have connected to a unix server, I'm trying to run a program on the unix server which will launch a gui, but when I try to launch it I get the message "display not set\n" "By default set it to 0.0" I can sit down at the unix machine and launch the program with... (3 Replies)
Discussion started by: cbachman
3 Replies

2. Programming

launch an executable from a C++ program

Hi everybody! Could you please tell me how can I launch an executable from a C++ (on unix) program? thanks in advance! (2 Replies)
Discussion started by: nadiamihu
2 Replies

3. Programming

Problem with external program launch

Hello, in the application i'm writing i need to launch "recordmydesktop" to capture the screen,but i'm having a problem: when the recording stops,and the encoding of the saved file starts,the entire system hangs until the completion of the encoding.This happens if i launch recordmydesktop from my... (7 Replies)
Discussion started by: Zipi
7 Replies

4. Shell Programming and Scripting

Shell Script to launch C program

Hi there, im new too shell scripting and was wondering if it is possible to create a shell script to take in a variable and load a c program. My C program is a file monitor, and is started by using the terminal and using to following code ./monitor FileToBeMonitored is it possible to have... (12 Replies)
Discussion started by: gazmcc182
12 Replies

5. Shell Programming and Scripting

Launch a windows program from perl script

Hi i wanted to know if any one can give me an example on how to launch a windows program in a perl script. I wanted to open the nmap software on my computer with a perl script, i heard this can be done with the system function. Would the function be in this format: $text =... (1 Reply)
Discussion started by: kingbp
1 Replies

6. Shell Programming and Scripting

Perl script timer on program launch

So I am attempting to get a short but complex perl script to be able to time out an application that I will launch from a command line. The terminal I use is MKS C SHELL and I am having trouble doing the a job spawn that will launch the application and keep time on it. I know you could do this... (1 Reply)
Discussion started by: vas28r13
1 Replies

7. Shell Programming and Scripting

Input keyboard keys upon program launch

Hey guys, first post! I want to write a script that will wait 1 second and then input the keys CTRL+ALT+J to the application i just opened. The program is dosbox, and thay key combination starts video recording :) I have no idea how to program this, can anyone help please? thanks in advance! (2 Replies)
Discussion started by: brunobliss
2 Replies

8. Shell Programming and Scripting

Launch a text program inside a konsole at startup

Hi ULFers, I am trying to setup a (very) simple startup script on a centos 6.4 computer and it kind of failed.... Here are the details : As said just above the computer setup is running a CentOS 6.4 x64, on this computer a vncserver is automatically started (by a chkconfig vncserver on), i... (1 Reply)
Discussion started by: pierpier
1 Replies

9. Shell Programming and Scripting

Having trouble using expect to launch vpn program

Hello all. I am a linux and linux scripting newbie so please forgive my ignorance. I have been tasked to write what I thought should be a pretty simple script that does the following: 1) Loads our forticlient ssl vpn command line client 2) sends the vpn password to the client Pretty... (2 Replies)
Discussion started by: wblakenc
2 Replies

10. Shell Programming and Scripting

Launch shell script with parameters from a webpage button

I want to create a simple html page that should contain 2 fields in which the user can write the input. Then I want to have a button that should launch a shell script with the parameters inserted by user in the fields from the webpage. This is the code behind my webpage: <html> <form... (2 Replies)
Discussion started by: black_fender
2 Replies
LIBMTP_track_struct(3)						      libmtp						    LIBMTP_track_struct(3)

NAME
libmtp - LIBMTP_track_struct SYNOPSIS
#include <libmtp.h> Data Fields uint32_t item_id uint32_t parent_id uint32_t storage_id char * title char * artist char * composer char * genre char * album char * date char * filename uint16_t tracknumber uint32_t duration uint32_t samplerate uint16_t nochannels uint32_t wavecodec uint32_t bitrate uint16_t bitratetype uint16_t rating uint32_t usecount uint64_t filesize time_t modificationdate LIBMTP_filetype_t filetype LIBMTP_track_t * next Detailed Description MTP track struct Examples: getplaylist.c, playlists.c, sendtr.c, and tracks.c. Field Documentation char* LIBMTP_track_struct::album Album name for track Examples: tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). char* LIBMTP_track_struct::artist Name of recording artist Examples: getplaylist.c, playlists.c, and tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::bitrate (Average) bitrate for this file min=1 max=0x16e360 Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint16_t LIBMTP_track_struct::bitratetype 0 = unused, 1 = constant, 2 = VBR, 3 = free Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). char* LIBMTP_track_struct::composer Name of recording composer Examples: tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). char* LIBMTP_track_struct::date Date of original recording as a string Examples: tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::duration Duration in milliseconds Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). char* LIBMTP_track_struct::filename Original filename of this track Examples: tracks.c. Referenced by LIBMTP_destroy_track_t(), LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_Send_Track_From_File_Descriptor(), LIBMTP_Send_Track_From_Handler(), and LIBMTP_Set_Track_Name(). uint64_t LIBMTP_track_struct::filesize Size of track file in bytes Examples: tracks.c. Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_Send_Track_From_File_Descriptor(), and LIBMTP_Send_Track_From_Handler(). LIBMTP_filetype_t LIBMTP_track_struct::filetype Filetype used for the current track Examples: tracks.c. Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_Send_Track_From_File_Descriptor(), LIBMTP_Send_Track_From_Handler(), LIBMTP_Set_Track_Name(), and LIBMTP_Update_Track_Metadata(). char* LIBMTP_track_struct::genre Genre name for track Examples: tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::item_id Unique item ID Examples: sendtr.c, and tracks.c. Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_new_track_t(), LIBMTP_Send_Track_From_File_Descriptor(), LIBMTP_Send_Track_From_Handler(), LIBMTP_Set_Track_Name(), and LIBMTP_Update_Track_Metadata(). time_t LIBMTP_track_struct::modificationdate Date of last alteration of the track Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), and LIBMTP_Get_Trackmetadata(). LIBMTP_track_t* LIBMTP_track_struct::next Next track in list or NULL if last track Examples: tracks.c. Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(). uint16_t LIBMTP_track_struct::nochannels Number of channels in this recording 0 = unknown, 1 or 2 Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::parent_id ID of parent folder Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_Send_Track_From_File_Descriptor(), and LIBMTP_Send_Track_From_Handler(). uint16_t LIBMTP_track_struct::rating User rating 0-100 (0x00-0x64) Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::samplerate Sample rate of original file, min 0x1f80 max 0xbb80 Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::storage_id ID of storage holding this track Examples: sendtr.c. Referenced by LIBMTP_Get_Tracklisting_With_Callback_For_Storage(), LIBMTP_Get_Trackmetadata(), LIBMTP_Send_Track_From_File_Descriptor(), and LIBMTP_Send_Track_From_Handler(). char* LIBMTP_track_struct::title Track title Examples: getplaylist.c, playlists.c, and tracks.c. Referenced by LIBMTP_destroy_track_t(), and LIBMTP_Update_Track_Metadata(). uint16_t LIBMTP_track_struct::tracknumber Track number (in sequence on recording) Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::usecount Number of times used/played Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). uint32_t LIBMTP_track_struct::wavecodec FourCC wave codec name Examples: tracks.c. Referenced by LIBMTP_Update_Track_Metadata(). Author Generated automatically by Doxygen for libmtp from the source code. Version 1.1.3 Sun Feb 17 2013 LIBMTP_track_struct(3)
All times are GMT -4. The time now is 09:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy