Sponsored Content
Top Forums Shell Programming and Scripting How to print file info with FFprobe? Post 302998989 by baris35 on Sunday 11th of June 2017 12:01:24 PM
Old 06-11-2017
How to print file info with FFprobe?

Hello,

I have many mp4 files inside a folder and I need to write stream info of each files.
Below script creates txt files but inside of each file is empty.

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

When I run similar code without for loop like
Code:
ffprobe -i filename.mp4

it prints out desired output.
Maybe I should pipe the output...

I'd like to know how it should be done
Many thanks for your help.

Boris

---------- 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

Last edited by baris35; 06-11-2017 at 01:04 PM.. Reason: sorted
 

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
MP4FILE(1)							  MP4v2 Utilities							MP4FILE(1)

NAME
mp4file - manual page for mp4file - MP4v2 2.0.0 SYNOPSIS
mp4file [OPTION]... ACTION file... DESCRIPTION
For each mp4 file specified, perform the specified ACTION. An action must be specified. Some options are not applicable to some actions. ACTIONS --list list (summary information) --optimize optimize mp4 structure --dump dump mp4 structure in human-readable format OPTIONS -y, --dryrun do not actually create or modify any files -k, --keepgoing continue batch processing even after errors -q, --quiet equivalent to --verbose 0 -d, --debug NUM increase debug or long-option to set NUM -v, --verbose NUM increase verbosity or long-option to set NUM -h, --help print brief help or long-option for extended help --version print version information and exit DEBUG LEVELS (for raw mp4 file I/O) 0 supressed 1 add warnings and errors (default) 2 add table details 3 add implicits 4 everything VERBOSE LEVELS 0 warnings and errors 1 normal informative messages (default) 2 more informative messages 3 everything mp4file - MP4v2 2.0.0 June 2012 MP4FILE(1)
All times are GMT -4. The time now is 01:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy