wok rev 18630

Add mediainfo-gui
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Nov 25 07:29:51 2015 +0200 (2015-11-25)
parents 0da56c065d14
children 1d088d403310
files mediainfo-gui/description.txt mediainfo-gui/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mediainfo-gui/description.txt	Wed Nov 25 07:29:51 2015 +0200
     1.3 @@ -0,0 +1,48 @@
     1.4 +The MediaInfo data display includes:
     1.5 +
     1.6 +  * Container: format, profile, commercial name of the format, duration, overall
     1.7 +    bit rate, writing application and library, title, author, director, album,
     1.8 +    track number, date, duration...
     1.9 +  * Video: format, codec id, aspect, frame rate, bit rate, color space, chroma
    1.10 +    subsampling, bit depth, scan type, scan order...
    1.11 +  * Audio: format, codec ID, sample rate, channels, bit depth, language, bit
    1.12 +    rate...
    1.13 +  * Text: format, codec ID, language of subtitle...
    1.14 +  * Chapters: count of chapters, list of chapters...
    1.15 +
    1.16 +MediaInfo analyticals include:
    1.17 +
    1.18 +  * Container: MPEG-4, QuickTime, Matroska, AVI, MPEG-PS (including unprotected
    1.19 +    DVD), MPEG-TS (including unprotected Blu-ray), MXF, GXF, LXF, WMV, FLV,
    1.20 +    Real...
    1.21 +  * Tags: Id3v1, Id3v2, Vorbis comments, APE tags...
    1.22 +  * Video: MPEG-1/2 Video, H.263, MPEG-4 Visual (including DivX, XviD),
    1.23 +    H.264/AVC, Dirac...
    1.24 +  * Audio: MPEG Audio (including MP3), AC3, DTS, AAC, Dolby E, AES3, FLAC...
    1.25 +  * Subtitles: CEA-608, CEA-708, DTVCC, SCTE-20, SCTE-128, ATSC/53, CDP, DVB
    1.26 +    Subtitle, Teletext, SRT, SSA, ASS, SAMI...
    1.27 +
    1.28 +MediaInfo features include:
    1.29 +
    1.30 +  * Read many video and audio file formats
    1.31 +  * View information in different formats (text, sheet, tree, HTML...)
    1.32 +  * Customise these viewing formats
    1.33 +  * Export information as text, CSV, HTML...
    1.34 +  * Graphical user interface, command line interface, or library
    1.35 +    (.dll/.so/.dylib) versions available
    1.36 +  * Integrate with the shell (drag 'n' drop, and Context menu)
    1.37 +  * Internationalisation: display any language on any operating system
    1.38 +  * Localisation capability
    1.39 +
    1.40 +License:
    1.41 +
    1.42 +It is Open-Source software which means that end users and developers have
    1.43 +freedom to study, to improve and to redistribute the program (BSD-style
    1.44 +license).
    1.45 +
    1.46 +Third-party tools
    1.47 +
    1.48 +PlayTime quickly calculates the total play time of a list of most any music or
    1.49 +movie file.
    1.50 +
    1.51 +MediaTab integrates MediaInfo into Windows Explorer Property tab.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/mediainfo-gui/receipt	Wed Nov 25 07:29:51 2015 +0200
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="mediainfo-gui"
     2.7 +VERSION="0.7.79"
     2.8 +CATEGORY="utilities"
     2.9 +SHORT_DESC="Unified display of the technical and tag data for media files"
    2.10 +MAINTAINER="al.bobylev@gmail.com"
    2.11 +LICENSE="BSD"
    2.12 +WEB_SITE="http://mediaarea.net/"
    2.13 +TARBALL="MediaInfo_GUI_${VERSION}_GNU_FromSource.tar.xz"
    2.14 +WGET_URL="http://mediaarea.net/download/binary/$PACKAGE/$VERSION/$TARBALL"
    2.15 +
    2.16 +DEPENDS="wxWidgets gtk+"
    2.17 +BUILD_DEPENDS="wxWidgets-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	./GUI_Compile.sh
    2.23 +	cd MediaInfo/Project/GNU/GUI; make DESTDIR=$install install
    2.24 +
    2.25 +	mkdir -p $install/usr/share/applications
    2.26 +	cp -a $src/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
    2.27 +		$install/usr/share/applications
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	cp -a $install/* $fs
    2.34 +}