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

Some mediainfo output is being cut when echoing to file in bash OS X

If I use the following terminal command: Mediainfo --Language=raw --Full '--Inform=General;%FileSize_String4%' '/Volumes/New Volume//FILM/test.avi' I receive this output, which is what I want: 701.5 MiB When I run this bash script in OS X: find…
Tandy Freeman
  • 528
  • 5
  • 15
1
vote
2 answers

How to get frame rate and stream count information of video files into a text file with using MediaInfo?

I have a problem with a console command executed from within a batch file in a command prompt window on Windows 7. I want to get the frame rate and the number of audio streams of a video and write them into a text file. For the frame rate there is…
Babadi48
  • 11
  • 1
  • 3
1
vote
4 answers

How to make long SED script leaner and more readable as code

Here is the sed part of my script right now: sed -i -e…
Tandy Freeman
  • 528
  • 5
  • 15
1
vote
1 answer

Java - Xuggle Crashing on Windows 7 64 bit

I am using xuggle-xuggler-5.4.jar file in my Java application (to extract media information like duration, bitrate etc), and it crashes the whole application at "container.open()". It generates a log file containing the following message: # # A…
Chintan
  • 21
  • 2
1
vote
1 answer

Mediainfo.dll duration parameter doesn't return seconds

I am working on a Visual C++ project, and I need to get duration of movie from a chosen file. I use Mediainfo.dll to retrieve this information (movieFile->General->DurationString;). The problem is when duration is more then one hour, I don't get…
adamm
  • 849
  • 1
  • 6
  • 17
1
vote
1 answer

Calling Bash Commands From Ruby with russian symbols return 1

Calling bash command cmd = '/usr/bin/mediainfo "/var/avalon/dropbox/Лекции_для_молодых_ученых/Nabiullin_SciERes_1.flv" --Output=XML' out = `#{cmd}` In rails project 'avalom media system' return error code 1. Removal of russian letters out of…
1
vote
1 answer

Mediainfo - Analyze media track starting at a custom time

As I understand Mediainfo analyzes video from the metadata of the first few frames. Is there a way to get Mediainfo to analyze the video starting at a certain time? If this is not attainable, can I do it with the C++ source code?
user2475310
  • 733
  • 4
  • 13
  • 19
1
vote
1 answer

Installing mediainfo

How i can install mediainfo into my centos6 using wget command? i tried those commands but i get errors: wget http://mediaarea.net/download/binary/mediainfo-gui/0.7.71/mediainfo-gui-0.7.71-1.x86_64.RHEL_6.rpm wget…
coodienoobie
  • 129
  • 5
  • 13
1
vote
0 answers

c# sound recognition in video editor

I'm currently coding a specialised video editor. It's specialised because it is used by lecturers in my sch to record e-learning lectures. It uses C#, WPF and Microsoft Expression Encoder. The basic functions like cut and insert video are already…
1
vote
1 answer

Extracting media properties in Java or Installing MediaInfo into Eclipse

In the program I am working on in eclipse. I am required to extract media properties from video files, such as bit rate, codecs, containers etc. I have researched this and have found the MediaInfo JNI however I do not know how to add this to eclipse…
1
vote
0 answers

How to use mediainfo dll in java application?

How to use mediainfo dll in java application? I want to use mediainfo dll in java project.
1
vote
1 answer

Configuring libmediainfo to work with Java project without installation across all platforms (OSes)

I am using mediainfo (http://mediainfo.sourceforge.net/en) to extract information from audio and video files using Java code. My java project runs over all platforms (osx, win & linux). So far I have only tested mediainfo over osx where the…
static0886
  • 784
  • 9
  • 25
1
vote
1 answer

Exception in thread "main" java.lang.UnsatisfiedLinkError: Unable to load library 'mediainfo': The specified module could not be found

I am using the MediaInfo.java class which can be found on sub4me to extract meta data from various video file formats. However I get the above error at run time. This is an extract of my code, the exception is thrown at MediaInfo info = new…
1
vote
3 answers

Unable to load library MediaInfo in linux

I am working on a java project where I am using mediainfo libraries. My JNA code with midiainfo.dll in windows works fine, but when I run my code in linux it is not working and giving following exception - java.lang.UnsatisfiedLinkError: Unable to…
Yogesh Kulkarni
  • 859
  • 1
  • 10
  • 19
1
vote
1 answer

Getting all possible video file data using mediainfo in linux ( using C )

I need to extract all meta data along with play-length information from the video files in pure C . I goggled and found MediaInfo Library but was not able to find any relevant c sample code . Is there any other way to achieve this with / without…
Captain Barbossa
  • 1,067
  • 10
  • 16