From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40124) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dG4yh-0006e3-E5 for guix-patches@gnu.org; Wed, 31 May 2017 10:52:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dG4yg-0007j4-EW for guix-patches@gnu.org; Wed, 31 May 2017 10:52:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44871) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dG4yg-0007iy-B1 for guix-patches@gnu.org; Wed, 31 May 2017 10:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dG4yg-00030W-4v for guix-patches@gnu.org; Wed, 31 May 2017 10:52:02 -0400 Subject: bug#27044: [PATCH] gnu: video: Add mediainfo. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170523204306.25418-1-doubleplusgood23@gmail.com> <20170527154246.6508-1-doubleplusgood23@gmail.com> Date: Wed, 31 May 2017 16:51:40 +0200 In-Reply-To: <20170527154246.6508-1-doubleplusgood23@gmail.com> (Ethan R. Jones's message of "Sat, 27 May 2017 11:42:46 -0400") Message-ID: <87tw41cc5f.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: "Ethan R. Jones" Cc: 27044-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable "Ethan R. Jones" skribis: > * gnu/packages/video.scm (mediainfo): Add new variable. [...] > + (synopsis "Utility for reading media metadata") > + (description "MediaInfo is a utility used for retrieving technical > +information and other metadata about audio or video files. > +A non-exhaustive list of the information MediaInfo can retrieve from med= ia files include: > +@itemize > +@item General: title, author, director, album, track number, date, durat= ion... > +@item Video: codec, aspect, fps, bitrate... > +@item Audio: codec, sample rate, channels, language, bitrate... > +@item Text: language of subtitle > +@item Chapters: number of chapters, list of chapters > +@end itemize\n > +MediaInfo supports the following formats: > +@itemize > +@item Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, > +MPEG-2, MPEG-4, DVD (VOB)... > +@item Video Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...) > +@item Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF... > +@item Subtitles: SRT, SSA, ASS, SAMI... > +@end itemize \n") I stripped the description as show below to avoid duplicating what we have in libmediainfo. Committed, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 64773edb3..ac2eec5f9 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2150,21 +2150,6 @@ MPEG-2, MPEG-4, DVD (VOB)... (home-page "https://mediaarea.net/en/MediaInfo") (synopsis "Utility for reading media metadata") (description "MediaInfo is a utility used for retrieving technical -information and other metadata about audio or video files. -A non-exhaustive list of the information MediaInfo can retrieve from media files include: -@itemize -@item General: title, author, director, album, track number, date, duration... -@item Video: codec, aspect, fps, bitrate... -@item Audio: codec, sample rate, channels, language, bitrate... -@item Text: language of subtitle -@item Chapters: number of chapters, list of chapters -@end itemize\n -MediaInfo supports the following formats: -@itemize -@item Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, -MPEG-2, MPEG-4, DVD (VOB)... -@item Video Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...) -@item Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF... -@item Subtitles: SRT, SSA, ASS, SAMI... -@end itemize \n") +information and other metadata about audio or video files. It supports the +many codecs and formats supported by libmediainfo.") (license license:bsd-2))) --=-=-=--