Sponsored Content
Top Forums Shell Programming and Scripting How to print file info with FFprobe? Post 302998993 by Aia on Sunday 11th of June 2017 01:00:04 PM
Old 06-11-2017
Quote:
Originally Posted by baris35
[...]

---------- Post updated at 11:01 AM ---------- Previous update was at 10:37 AM ----------

Sorted now...


Code:
#!/bin/bash
for video in *.mp4;
do
	base="${video%.mp4}"
	ffprobe -i "$base".mp4 2>>"$base".txt
done
exit 0


Thanks
Boris
Are you certain that you would like to just record the stderr to the .txt file?

Could it be that you would like stdout?
Code:
ffprobe -i "$base".mp4 >> "$base".txt

or both stream.
Code:
ffprobe -i "$base".mp4 >> "$base".txt 2>&1

This User Gave Thanks to Aia For This Post:
 

10 More Discussions You Might Find Interesting

1. Programming

Listing File Info

Hi, From a Unix book, i'd found that the way to list files in a directory. But those file info are all not shown, wat is shown is only the file name. Can anyone pls teach me how to show the file details? (etc file size, read/write permission, modified date) my code: Dir *dirp; struct... (3 Replies)
Discussion started by: AkumaTay
3 Replies

2. UNIX for Dummies Questions & Answers

file activity (open/closed) file descriptor info using KORN shell scripting

I am trying to find a way to check the current status of a file. Such as some cron job processes are dependent on the completion of others. if a file is currently being accessed / modified or simply open state I will wait until it is done being processed before attempting the next process on that... (3 Replies)
Discussion started by: Gary Dunn
3 Replies

3. UNIX for Dummies Questions & Answers

getting user info on a file

I know this is prob a simple question but anyway here goes. I want to find out the owner of a certain file. I also want to find out what permissions that owner has. Is their any command that is similair to file in that it can tell men this specfic information about a file the way file tells you... (1 Reply)
Discussion started by: Quesa
1 Replies

4. Solaris

Info from core file

My server with Solaris OS and SUNW,Sun-Fire-V240 give me core file like below: ----------------- lwp# 1 / thread# 1 -------------------- fed40e50 _pause (1, 0, fed82000, ffbfe9bc, fedda780, 0) + 8 ff1a22b0 __1cLMTlsSigHdlrEwait6Mb_v_ (1013d0, 1, 1, 0, 0, 0) + 58 0003d274 main (1,... (3 Replies)
Discussion started by: fredginting
3 Replies

5. Shell Programming and Scripting

Finding & Moving Oldest File by Parsing/Sorting Date Info in File Names

I'm trying to write a script that will look in an /exports folder for the oldest export file and move it to a /staging folder. "Oldest" in this case is actually determined by date information embedded in the file names themselves. Also, the script should only move a file from /exports to... (6 Replies)
Discussion started by: nikosey
6 Replies

6. Shell Programming and Scripting

file size info

Hello. I can't figure out how to see file size info here. Can someone comment on this ? bash-3.2$ uname -a HP-UX fms-a B.11.31 U ia64 1717699127 unlimited-user license bash-3.2$ pwd /u01/app/oracle/oradata/fms bash-3.2$ ls -l fms_tools_1.dbf lrwxr-xr-x 1 root sys 21... (2 Replies)
Discussion started by: tonijel
2 Replies

7. Shell Programming and Scripting

Howto Print File Path or Print the Filename

I'm trying to clean up my samba share and need to print the found file or print the path of the image it tried to searched for. So far I have this but can't seem to get the logic right. Can anyone help point me in the right direction? for FILE in `cat list`; do if ; then ... (1 Reply)
Discussion started by: overkill
1 Replies

8. Shell Programming and Scripting

Add column info from one file to larger second file

Hi, long time reader, first time poster. I've done some searching so please if this is a repeated post excuse the duplicate, but what I have are two files roughly like so: File 1: A W B X C Y D Z File 2: A 1 C 2 D 3 And what I would like to get out is... (4 Replies)
Discussion started by: wallysb01
4 Replies

9. Shell Programming and Scripting

Print info in console or not judged by variable

I have a code fragment #dosomething ( #do many things ) |tee -a zzz.log #dosomething I want a varialbe var if var =1, print the info in (#do many things ) to console, if var=0, not print the info to console (1 Reply)
Discussion started by: yanglei_fage
1 Replies

10. Shell Programming and Scripting

Inputing info from a CSV file and filling a template file

Hi, I have a .csv file that contains a variety of fields for 60 clients: USERNAME, PASSWORD, and COMMENTS. I have a template file which contains a great deal of data for each client and has the fields USERNAME, PASSWORD, and COMMENTS that has to be filled with the values of USERNAME,... (1 Reply)
Discussion started by: mojoman
1 Replies
INFO(5) 							File Formats Manual							   INFO(5)

NAME
info - readable online documentation DESCRIPTION
The Info file format is an easily-parsable representation for online documents. It can be read by emacs(1) and info(1) among other pro- grams. Info files are usually created from texinfo(5) sources by makeinfo(1), but can be created from scratch if so desired. For a full description of the Texinfo language and associated tools, please see the Texinfo manual (written in Texinfo itself). Most likely, running this command from your shell: info texinfo or this key sequence from inside Emacs: M-x info RET m texinfo RET will get you there. AVAILABILITY
ftp://ftp.gnu.org/pub/gnu/texinfo-<version>.tar.gz or any GNU mirror site. REPORTING BUGS
Please send bug reports to bug-texinfo@gnu.org, general questions and discussion to help-texinfo@gnu.org. SEE ALSO
info(1), install-info(1), makeinfo(1), texi2dvi(1), texindex(1). emacs(1), tex(1). texinfo(5). FSF
GNU Info INFO(5)
All times are GMT -4. The time now is 12:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy