[Windows 7 x64] Find FFMPEG location ?


 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions [Windows 7 x64] Find FFMPEG location ?
# 1  
Old 12-16-2018
Why do you want to know? ffmpeg is often installed as part of another application. My Windows 7 system has sooooo many copies and different versions/releases of ffmpeg they are almost too many to list.

However, assuming that the 'ffmpeg' files have not been renamed (disguised) for some reason you could open a command prompt (Start>Accessories>Command Prompt), then select a disk, ensure you are at the top of the structure, and issue a command line search.

Code:
C: (or D: or whatever drive)
cd \
dir ffmpeg* /s

If your system is anything like mine the list will be long. You might find it necessary to redirect/capture the output for later viewing.

Or have you tried that already?

Last edited by hicksd8; 12-16-2018 at 09:50 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. IP Networking

Where to find IP address to location data?

I'm trying to remotely probe a range of IP addresses. First I need a list of IP addresses for a very small geographic area. I've had a lot of trouble obtaining them. I would like to find a database or something. Suppose I do get the data. Can I see if that IP address is in use by someone? Can I... (2 Replies)
Discussion started by: rockandAir
2 Replies

2. Red Hat

Find cpu location

Hi guys we have come corrected errors and i would like to know where is cpu 23 located physicaly... :( here the lscpu output (2 socket, 6 cores intel cpu): # lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): ... (1 Reply)
Discussion started by: beta17
1 Replies

3. UNIX for Dummies Questions & Answers

Find the location of particular file and directory

hi all, i am new to UNIX environment. i have a file and directory with same name, i don't know the location I want to find location of that file and directory. please suggest a solution. (5 Replies)
Discussion started by: mahesh1987
5 Replies

4. UNIX for Dummies Questions & Answers

Find a set of files in a location

Hi, I am new to Unix. I need a script to check some 74 files are present in a particular location or not . (4 Replies)
Discussion started by: nid21
4 Replies

5. Shell Programming and Scripting

How to find a existing file location and directory location in Solaris box?

Hi This is my third past and very impressed with previous post replies Hoping the same for below query How to find a existing file location and directory location in solaris box (1 Reply)
Discussion started by: buzzme
1 Replies

6. Red Hat

Find Computer Location

Hi, there, How to know location of a computer where its IP Address and Computer name is known? tx (5 Replies)
Discussion started by: budiantho_indra
5 Replies

7. Shell Programming and Scripting

Copying files from windows shared location to linux box

Hi, i am new to shell scripting. i have a requirement to copy the files from a windows shared location( vendor will place the files here) to Linux server( my Informatica will pick the files from this location). Files should be loaded in the order in which they were placed in windows box.(Based on... (1 Reply)
Discussion started by: Haari
1 Replies

8. Shell Programming and Scripting

How to find the job and its location

Guys; I first I thank you for helping me few times in the past; A job runs every day at 8AM and looks for a file “abcd.txt” in directory “/usr/task/tmp”. How to find the job and its location. I need to change the file name to “abcd.dat”. it is UNIX environment. (2 Replies)
Discussion started by: clem2610
2 Replies

9. Shell Programming and Scripting

Find a pattern in a file at a particular location

Hi all, I have a question on how to search for a pattern in a file and return a value if it is present at that particular location. How to read each line and each character for the pattern in the file of any format. Eg for the file format: attached the file (1 Reply)
Discussion started by: sparks
1 Replies
Login or Register to Ask a Question
ICONVCONFIG(8)						    Linux System Administration 					    ICONVCONFIG(8)

NAME
iconvconfig - create iconv module configuration cache SYNOPSIS
iconvconfig [options] [directory]... DESCRIPTION
The iconv(3) function internally uses gconv modules to convert to and from a character set. A configuration file is used to determine the needed modules for a conversion. Loading and parsing such a configuration file would slow down programs that use iconv(3), so a caching mechanism is employed. The iconvconfig program reads iconv module configuration files and writes a fast-loading gconv module configuration cache file. In addition to the system provided gconv modules, the user can specify custom gconv module directories with the environment variable GCONV_PATH. However, iconv module configuration caching is used only when the environment variable GCONV_PATH is not set. OPTIONS
--nostdlib Do not search the system default gconv directory, only the directories provided on the command line. -o outputfile, --output=outputfile Use outputfile for output instead of the system default cache location. --prefix=pathname Set the prefix to be prepended to the system pathnames. See FILES, below. By default, the prefix is empty. Setting the prefix to foo, the gconv module configuration would be read from foo/usr/lib/gconv/gconv-modules and the cache would be written to foo/usr/lib/gconv/gconv-modules.cache. -?, --help Print a usage summary and exit. --usage Print a short usage summary and exit. -V, --version Print the version number, license, and disclaimer of warranty for iconv. EXIT STATUS
Zero on success, nonzero on errors. FILES
/usr/lib/gconv Usual default gconv module path. /usr/lib/gconv/gconv-modules Usual system default gconv module configuration file. /usr/lib/gconv/gconv-modules.cache Usual system gconv module configuration cache. SEE ALSO
iconv(1), iconv(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2018-02-02 ICONVCONFIG(8)