Ffmpeg

 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions Ffmpeg
# 8  
Old 10-31-2017
The code that you posted above is not a shell script but a Batch File

You can search online for Batch file tutorials to learn more about it.
These 2 Users Gave Thanks to Yoda For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To call ffmpeg in a loop

Hello, I was inquiring myself if it's possible to call ffmpeg in loop, an in each iteration, ffmpeg will pick one of the files in a directory and produce a new with a slightest different name. Can be as simple as a '*' in the beginning of the file name. I know how to use ffmpeg to do the... (2 Replies)
Discussion started by: colt
2 Replies

2. UNIX and Linux Applications

Slideshow with ffmpeg converter

Hi, everyone! I'm on a Debian 9.0 GNU/Linux machine. I'm not a very experienced user, but I do my best to learn. So, I have a bunch of images PNG files. I'm trying to make a slideshow with these using the ffmpeg video converter. I also have an audio WAVE stereo file which I'd like to merge... (0 Replies)
Discussion started by: worov
0 Replies

3. Windows & DOS: Issues & Discussions

FFMPEG command problem...

Hi, Currently having some trouble with FFMPEG.... I have the following files: 0001_.gif 0002_.gif ............. 0584_.gif 0585_.gif 0586_.gif 0587_.gif 0588_.gif 0589_.gif 0590_.gif 0591_.gif And am trying to use ffmpeg to join them to a video as follows: (7 Replies)
Discussion started by: pasc
7 Replies

4. Shell Programming and Scripting

a playlist for ffmpeg streamer

Hi, I hope I am posting in the right place. I use to stream to justin tv using ffmpeg with that command ffmpeg -re -i "path/to/input.avi" -vcodec libx264 -preset fast -crf 30 -acodec libfaac -ab 128k -ar 44100 -f flv rtmp://live.justin.tv/app/xxxxxxxxxxx I would like to know if a bash... (2 Replies)
Discussion started by: undercash
2 Replies

5. UNIX for Dummies Questions & Answers

FFMPEG install problem on Unix

Guys, I'm new on Unix and I was hoping you could help me installing ffmpeg on Apple TV 1st Gen, which is a Unix based OS. This is the version of Unix. Darwin AppleTV.local 8.8.2 Darwin Kernel Version 8.8.2: Mon Jan 29 18:57:29 PST 2007; root:xnu-792.94.18~1/RELEASE_I386 i386 i386 I was... (6 Replies)
Discussion started by: ferrarih
6 Replies

6. Shell Programming and Scripting

FFMPEG in linux box

Hi all, I have successfully used ffmpeg.exe in windows. But i dont know how to use it in linux:confused:. When i tried running a java program in linux using ffmpeg, I am getting, the following error even after having that ffmpeg.exe in my classpath: "java.io.IOException: java.io.IOException:... (3 Replies)
Discussion started by: ananthi_ku
3 Replies

7. OS X (Apple)

Video grab using ffmpeg?

Does anyone know how to grab video (screen) on Terminal using ffmpeg (not X11). I have written a unix library and I'd like to make a short movie (demo) of it. Tried: I already own SNapz Pro2 but it hangs the system (I have an old Powerbook 15" PPC). I guess my system is too slow for version... (0 Replies)
Discussion started by: sentinel
0 Replies

8. UNIX for Dummies Questions & Answers

Completing ffmpeg installation

Hello. i am new to unix, though have quite a substantial background of other systems. i recently installed ffmpeg and mencoder on a unix server, which holds a website, in order to use these programs from the website. after installation, i can activate both commands directly using putty, no... (1 Reply)
Discussion started by: noamon
1 Replies
Login or Register to Ask a Question
FLDIGI-SHELL(1) 														   FLDIGI-SHELL(1)

NAME
fldigi-shell - program for controlling fldigi SYNOPSIS
fldigi-shell [OPTIONS] [FILE] DESCRIPTION
The fldigi-shell program controls fldigi(1) over HTTP via XML-encoded remote procedure calls (XML-RPC). It can call any XML-RPC method exported by fldigi, and also defines some useful commands of its own. OPTIONS
-d Enable debug output. -u URL Use URL to access the server. Defaults to "http://localhost:7362/RPC2", which corresponds to fldigi's default listen address and port. -c COMMAND Execute command COMMAND and exit. COMMANDS
Note The "x:yz" notation refers to the return type and argument type(s). They are: "n" (nil), "i" (integer), and "s" (string). debug (n:n:) Toggle debug output. eval (s:s) Evaluate Perl code. exit (n:n) Exit the shell. help (n:n) Print help for server (fldigi) methods and shell commands. history (s:n) Print command history. modems (s:n) List all modem names. poll (s:i) Poll for new received text every i seconds. Defaults to 1. pskrqsy (n:si) QSY to ith best frequency for grid s. The list of frequencies is retrieved from the PSK Reporter website; see RESOURCES. The grid square string may be left empty, and the index argument defaults to 0 (first frequency). recvtext (s:n) Get all received text. reinit (n:n) Fetch commands from the server and rebuild command list. send (n:s) Send text interactively, one line at a time. sendchar (n:s) Send text interactively, one character at a time. sendfile (n:s) Send text read from file s. sendstr (n:s) Send string s. source (n:s) Read commands from file s. time (s:s) Time a command. wait (n:s) Wait for server TRX state to become s. EXTENDED DESCRIPTION
The shell has three modes of operation: 1. Interactive mode with history, tab completion and command line editing. This is the default mode when fldigi-shell is run without arguments. 2. Batch mode for a single command with the -c option. 3. Batch mode to "source" a file containing Perl code. Fldigi-shell commands can be called using "execute("COMMAND [ARG ...]")" calls. FILES
$HOME/.fldigi/shell-history Contains the fldigi-shell command history. EXAMPLES
while :; do fldigi-shell -c pskrqsy; sleep 900; done Change to the "best frequency" (see PSK Reporter) every fifteen minutes. SEE ALSO
fldigi(1), xmlrpc(1), readline(3), RPC::XML(3pm) BUGS
o Some additional command wrappers are needed. o Command completion should be enabled for the arguments of some commands. o The XML-RPC handling code should probably go in a separate module. o It should be possible to pass multiple -c CMD arguments. RESOURCES
Fldigi web site: http://www.w1hkj.com/Fldigi.html The PSK Automatic Propagation Reporter site can be found at http://www.pskreporter.info/ The GNU Readline Library: http://directory.fsf.org/project/readline/ XML-RPC home page: http://www.xmlrpc.com/ AUTHOR
Fldigi-shell and this manual page were written by Stelios Bounanos, M0GLD <sb[at]enotty(dot)net>. COPYING
License GPLv2+: GNU GPL version 2 or later. 07/01/2012 FLDIGI-SHELL(1)