Answers:
avprobe
从包装上libav-tools
还不错。
样品输出 avprobe somefile.mp4
avprobe version 0.8.4-4:0.8.4-0ubuntu0.12.04.1, Copyright (c) 2007-2012 the Libav developers
built on Nov 6 2012 16:51:33 with gcc 4.6.3
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'somefile.mp4':
Metadata:
major_brand : avc1
minor_version : 0
compatible_brands: isomavc1
creation_time : 2012-08-10 15:01:14
Duration: 00:01:02.55, start: 0.000000, bitrate: 682 kb/s
Stream #0.0(und): Video: h264 (High), yuv420p, 1904x1040 [PAR 1:1 DAR 119:65], 680 kb/s, 19.18 fps, 20 tbr, 20 tbn, 40 tbc
Metadata:
creation_time : 2012-08-10 15:01:14
要添加到Thunar自定义动作中,相对于此处建议的内容,要添加的模拟公式为:
gnome-terminal --window-with-profile=new1 -e "avprobe %f"
ffmpeg
仍然静止的人,ffprobe
执行相同的操作。
mplayer -vo null -ao null -identify -frames 0 http://example.com/myvideo.mkv
我mediainfo
用来获取媒体文件的所有属性(音频和视频文件)
root@server:Videos::08:47 PM# mediainfo Vazquez.mp4
General
Complete name : Vazquez.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 103 MiB
Duration : 3mn 52s
Overall bit rate mode : Variable
Overall bit rate : 3 730 Kbps
Encoded date : UTC 2011-11-10 07:30:57
Tagged date : UTC 2011-11-10 07:30:57
gsst : 0
gstd : 232083
gssd : B7AA66E45HH1322313268839354
gshh : o-o.preferred.bhartibb-blr1.v12.lscache7.c.youtube.com
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4.0
Format settings, CABAC : Yes
Format settings, ReFrames : 1 frame
Format settings, GOP : M=1, N=24
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 3mn 52s
Bit rate : 3 576 Kbps
Maximum bit rate : 5 947 Kbps
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 24.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.072
Stream size : 98.9 MiB (96%)
Tagged date : UTC 2011-11-10 07:30:58
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 3mn 52s
Bit rate mode : Variable
Bit rate : 152 Kbps
Maximum bit rate : 188 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 4.20 MiB (4%)
Title : IsoMedia File Produced by Google, 5-11-2011
Encoded date : UTC 2011-11-10 07:30:58
Tagged date : UTC 2011-11-10 07:30:58
mediainfo
现在位于Ubuntu存储库中,可以通过运行安装
sudo apt install mediainfo
以前,有必要使用PPA,但这对于当前的Ubuntu版本没有软件包。
.
以文件名传递,则mediainfo将递归列出当前文件夹中的所有文件。
这可能是一个惊喜,但是exiftool
从libimage-exiftool-perl的有这个能力以及。
它支持显示来自许多媒体文件格式的信息,并且还可以为其中某些格式写入元数据。
音频文件的示例输出:
# exiftool The\ Police\ -\ Live\!\ Disc\ 2\ -\ Atlanta\ -\ 01.\ Synchronicity\ I.mp3
ExifTool Version Number : 9.13
File Name : The Police - Live! Disc 2 - Atlanta - 01. Synchronicity I.mp3
Directory : .
File Size : 3.9 MB
File Modification Date/Time : 2012:03:23 19:44:23+01:00
File Access Date/Time : 2012:12:26 11:44:38+01:00
File Inode Change Date/Time : 2012:03:23 19:44:23+01:00
File Permissions : rw-------
File Type : MP3
MIME Type : audio/mpeg
MPEG Audio Version : 1
Audio Layer : 3
Sample Rate : 44100
Channel Mode : Joint Stereo
MS Stereo : On
Intensity Stereo : Off
Copyright Flag : False
Original Media : True
Emphasis : None
VBR Frames : 6660
VBR Bytes : 4044318
VBR Scale : 57
Encoder : LAME3.96
Lame VBR Quality : 4
Lame Quality : 3
Lame Method : VBR (old/rh)
Lame Low Pass Filter : 18 kHz
Lame Bitrate : 32 kbps
Lame Stereo Mode : Joint Stereo
Track : 1/15
Disc : 2/2
Artist : The Police
Title : Synchronicity I
Album : Live!
Year : 2003
Genre : Rock
Comment : Atlanta
Discid : c611270f
ID3 Size : 128
Audio Bitrate : 186 kbps
Date/Time Original : 2003
Duration : 0:02:53 (approx)
根据您认为必要的内容,您可能需要为此使用file
实用程序,该实用程序会提供有关任何文件的常规信息。其主要目的是告诉您所拥有的文件类型,但它可以提供所需的详细程度。
$ file '01 - Nina Simone - Mood Indigo.mp3'
01 - Nina Simone - Mood Indigo.mp3: Audio file with ID3 version 2.3.0, contains: MPEG ADTS, layer III, v1, 128 kbps, 44.1 kHz, JntStereo
但是,如果您需要了解标签的内容(标题,艺术家等),file
则不会告诉您。
我知道以下命令: avconv -i <filename>
对于myfile.flv: avconv -i myfile.flv
我的想法是将该命令添加到Thunar的自定义操作中,无论扩展名如何,都可以从上下文菜单中运行它。但是它必须在终端中运行,所以我看了看这个答案。(要打开终端并使其保持打开状态,我在gnome终端(编辑/配置文件)中创建了一个名为“ new1”的新配置文件,并在配置文件首选项/“标题和命令”下将其设置为“当命令退出时”为“保留终端打开”。)
最后(通过反复试验),我想到了这个:
gnome-terminal --window-with-profile=new1 -e "avconv -i %f"
该功能适用于Thunar的自定义操作-并适用于任何媒体文件。
avprobe
并avconv
使用相同的基础库,并为您提供相同的结果,但是avconv
它是编码器,因此,使用此命令在末尾也会出现错误At least one output file must be specified
。
还有一些音频文件,尽管可能无法与exiftool竞争:
id3v2 -l <filename>
soxi <filename>
此外soxi支持视频文件以及。
的ID3V2和SOX包(其可以通过点击这些链接被安装)提供的那些命令。也可以将它们安装在软件中心中,或通过运行:
sudo apt-get install sox
sudo apt-get install id3v2
一个例子:id3v2 -l 'Beatles - Here Comes The Sun.mp3'
输出:
id3v1 tag info for Beatles - Here Comes The Sun.mp3:
Title : Here Comes The Sun Artist: Beatles
Album : Abbey Road Year: 1969, Genre: Pop (13)
Comment: Track: 7
id3v2 tag info for Beatles - Here Comes The Sun.mp3:
TIT2 (Title/songname/content description): Here Comes The Sun
TYER (Year): 1969
TPUB (Publisher): Capitol
TCON (Content type): Pop (13)
TALB (Album/Movie/Show title): Abbey Road
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
TRCK (Track number/Position in set): 7
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
TPE2 (Band/orchestra/accompaniment): The Beatles
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
PRIV (Private frame): (unimplemented)
TCOM (Composer): George Harrison
TPE1 (Lead performer(s)/Soloist(s)): Beatles
soxi some.mp3
我得到no handler for file extension mp3
。AVI也一样。soxi supports a limited number of audio and video formats
:有什么限制,或者除了安装它们之外还有其他事情要做吗?