Questions tagged [mediainfo]

MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files.

The MediaInfo data display includes

  • Container: format, profile, commercial name of the format, duration, overall bit rate, writing application and library, title, author, director, album, track number, date, duration.
  • Video: format, codec id, aspect, frame rate, bit rate, color space, chroma subsampling, bit depth, scan type, scan order.
  • Audio: format, codec id, sample rate, channels, bit depth, language, bit rate.
  • Text: format, codec id, language of subtitle.
  • Chapters: count of chapters, list of chapters.
181 questions
1
vote
0 answers

Docker - Separate container or same container when adding binary for use by PHP?

I'm looking for best practice guidance with the following scenario. I have an NGINX container and an FPM container. I would like to use the MediaInfo binary via a PHP wrapper. Should I: A) Add the MediaInfo binary to the FPM container. Would this be…
InTooDeep
  • 578
  • 2
  • 7
  • 19
1
vote
0 answers

Media Info says wav file is truncated instead of showing the properties

I have written some data to a wav file along with the header. But when i play it using media player or VLC it does not play. When I open the same file using MediaInfo, it says 'IsTruncated: Yes' . what does this truncated mean and how to solve…
Bhavana
  • 11
  • 3
1
vote
0 answers

how to grab frame from video using mediainfo library in java

I am using mediainfo cli to get information about video. I call cli program using Process.Runtime. Now I want to use the same thing to grab the first frame from video using the mediainfo cli or any other solution which is base on this library and in…
Dhaval Bhoot
  • 241
  • 1
  • 5
  • 18
1
vote
0 answers

XSD Generated C# for MediaInfo how to get track attributes?

Since MediaInfo v17 switched to XSD validated XML, I am trying to use xsd.exe to generate C# code to deserialize the MediaInfo XML file. https://mediaarea.net/MediaInfo/ChangeLog Version 17.10, 2017-11-02 + New MediaInfo XML output, with XSD, more…
PieterV
  • 555
  • 1
  • 4
  • 18
1
vote
1 answer

ffmpeg pipe to mediainfo

I need to get infos from the raw h264 track of a mkv file. Some times ago, I used to extract the h264 raw stream, and analyze it by itself. now, I would like to limit the disk usage, avoiding the extract process, so there are 2 choices: use ffmpeg…
1
vote
1 answer

Mediainfo CLI batch to display total info of videos

I have a folder with many videos with nearly same informations. Here my script: mediainfo --Inform=file://C:\Users\Administrator\Desktop\Encode.tool\tem.txt *.mkv pause tem.txt General;%FileName% * Size:%FileSize/String3% *…
MinhLee
  • 21
  • 2
  • 9
1
vote
1 answer

WAV File missing Audio and Recordings

We use FreePBX to record a conference line. This Line appears not to have disconnected and it created a continuous WAV file for 209 hours. [matt@ait-debian ~/SLP ]$ mediainfo 7000-7000-always-20170823-162901- 1503469728.35757-1503469748.wav …
Marvin
  • 11
  • 1
1
vote
1 answer

Mediainfo bulk show audio sample frequency

Want to see audio sample frequencies (44100 48000 etc.) of all video files in folder with Mediainfo GUI for Windows. No problem to see all columns with bitrates, codecs using "sheets". But i can't find an option for frequencies column. There are…
Val Pan
  • 29
  • 1
  • 4
1
vote
1 answer

Unable to find an entry point named 'MediaInfo_New' in DLL 'MediaInfo.dll'

I am using MediaInfoDotNet library which internally called C++ MediaInfo.dll. This has been running on PROD fine for a while. However suddenly this morning it started throwing below error: Unable to find an entry point named 'MediaInfo_New' in DLL…
friend
  • 1,909
  • 2
  • 21
  • 28
1
vote
1 answer

Ruby mediainfo find unique properites

I'm trying to scan a large hard drive (think 17TBs) to find a storage estimate for video files within specific folders. In addition, I am trying to find specific unique properties of the video files. The purpose of this is to make a case for a…
Maile Thiesen
  • 131
  • 2
  • 7
1
vote
1 answer

CompleteName_Last MediaInfo what is that mean and how to set it via FFMPEG

I have a question relative to Complete_NameLast MediaInfo field CompleteName_Last : Complete name (Folder+Name+Extension) of the last file (in the case of a sequence of files) Does any one knows how and when this field adding to file ?…
user1722669
  • 488
  • 2
  • 6
  • 22
1
vote
1 answer

Running a check_output in python3 with mediainfo produces an error, even though the same call in terminal works fine

This is the code: try: s = check_output(['mediainfo', '--Inform=General;%Format%', filename]) # Gets the output from mediainfo When running it, I get subprocess.CalledProcessError: Command '['mediainfo', '--Inform=General;%Format%', 'xyz']'…
user2765654
  • 160
  • 6
1
vote
1 answer

How to specify video bit rate mode is used in .mp4 file

I have a problem about get media info of .mp4 file. I want to get video bit rate mode of the .mp4 file. I used to ffmpeg and mediainfo tool. ffmpeg don't have (or show) video_bit_rate_mode field. Command: ffprobe -show_streams -i…
Joe
  • 11
  • 2
1
vote
1 answer

Importing C++ dll function in C#

I would like to call a function inside MediaInfo.dll. The function is: const wchar_t* __stdcall MediaInfo_Option (void* Handle, const wchar_t* Option, const wchar_t* Value); I have declared it in the c# code in this…
Zed Machine
  • 67
  • 1
  • 10
1
vote
0 answers

FFMPEG GET Codec Info of Audio & Video Files in C#

I want to retrieve and Validate the Audio and Video files Codec Info, File-format and Media Format.Looking for a .Net Class Library and having a better Wrapper classes return so that I can retrieve this information from a File in C# . Once it is…
Chat
  • 185
  • 1
  • 5
  • 15