# HG changeset patch # User Aleksej Bobylev # Date 1448429391 -7200 # Node ID 754e3076b61b110c5a55b1cb49d839120b14eb83 # Parent 0da56c065d1433e4217df7035cea25e59f7849b8 Add mediainfo-gui diff -r 0da56c065d14 -r 754e3076b61b mediainfo-gui/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mediainfo-gui/description.txt Wed Nov 25 07:29:51 2015 +0200 @@ -0,0 +1,48 @@ +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... + +MediaInfo analyticals include: + + * Container: MPEG-4, QuickTime, Matroska, AVI, MPEG-PS (including unprotected + DVD), MPEG-TS (including unprotected Blu-ray), MXF, GXF, LXF, WMV, FLV, + Real... + * Tags: Id3v1, Id3v2, Vorbis comments, APE tags... + * Video: MPEG-1/2 Video, H.263, MPEG-4 Visual (including DivX, XviD), + H.264/AVC, Dirac... + * Audio: MPEG Audio (including MP3), AC3, DTS, AAC, Dolby E, AES3, FLAC... + * Subtitles: CEA-608, CEA-708, DTVCC, SCTE-20, SCTE-128, ATSC/53, CDP, DVB + Subtitle, Teletext, SRT, SSA, ASS, SAMI... + +MediaInfo features include: + + * Read many video and audio file formats + * View information in different formats (text, sheet, tree, HTML...) + * Customise these viewing formats + * Export information as text, CSV, HTML... + * Graphical user interface, command line interface, or library + (.dll/.so/.dylib) versions available + * Integrate with the shell (drag 'n' drop, and Context menu) + * Internationalisation: display any language on any operating system + * Localisation capability + +License: + +It is Open-Source software which means that end users and developers have +freedom to study, to improve and to redistribute the program (BSD-style +license). + +Third-party tools + +PlayTime quickly calculates the total play time of a list of most any music or +movie file. + +MediaTab integrates MediaInfo into Windows Explorer Property tab. diff -r 0da56c065d14 -r 754e3076b61b mediainfo-gui/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mediainfo-gui/receipt Wed Nov 25 07:29:51 2015 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="mediainfo-gui" +VERSION="0.7.79" +CATEGORY="utilities" +SHORT_DESC="Unified display of the technical and tag data for media files" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="BSD" +WEB_SITE="http://mediaarea.net/" +TARBALL="MediaInfo_GUI_${VERSION}_GNU_FromSource.tar.xz" +WGET_URL="http://mediaarea.net/download/binary/$PACKAGE/$VERSION/$TARBALL" + +DEPENDS="wxWidgets gtk+" +BUILD_DEPENDS="wxWidgets-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./GUI_Compile.sh + cd MediaInfo/Project/GNU/GUI; make DESTDIR=$install install + + mkdir -p $install/usr/share/applications + cp -a $src/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \ + $install/usr/share/applications +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}