Skip to content

Commit

Permalink
Add audio CD playback and ripping support
Browse files Browse the repository at this point in the history
Add libmusicbrainz and the cdparanoia gst plugin to support audio CD
playback.

Closes: #11
  • Loading branch information
hadess committed Jan 6, 2020
1 parent 68ec0ec commit 0fd975b
Showing 1 changed file with 68 additions and 1 deletion.
69 changes: 68 additions & 1 deletion org.gnome.Rhythmbox3.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
/* totem-pl-parser http support, for podcasts and streaming, and optical media detection */
"--talk-name=org.gtk.vfs", "--talk-name=org.gtk.vfs.*",
/* FIXME See #16 */
"--env=GIO_USE_VOLUME_MONITOR=udisks2"
"--env=GIO_USE_VOLUME_MONITOR=udisks2",
/* Ensure cdda gstreamer plugin is picked found for audio CD's */
"--env=GST_PLUGIN_PATH=/app/lib/codecs/lib/gstreamer-1.0"
],
"build-options" : {
"cflags": "-O2 -g",
Expand Down Expand Up @@ -137,6 +139,71 @@
}
]
},
/* gst-plugins-base needs cdparanoia to add support for cdda */
{
"disabled": true,
"name": "cdparanoia",
"buildsystem": "simple",
"build-commands": [
"./configure --prefix=/app",
"make all slib",
"make install"
],
"sources": [
{
"type": "archive",
"url": "http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz",
"sha256": "005db45ef4ee017f5c32ec124f913a0546e77014266c6a1c50df902a55fe64df"
}
]
},
/* To play cdda */
{
"name": "gst-plugins-base",
"buildsystem": "meson",
"config-opts": [
"--prefix=/app",
"-Dauto_features=disabled",
"-Dcdparanoia=enabled"
],
"cleanup": [ "*.la", "/share/gtk-doc" ],
"sources": [
{
"type": "git",
"url": "git://anongit.freedesktop.org/gstreamer/gst-plugins-base",
"branch" : "1.14.2",
"commit" : "24f097564657bd630e68931c932ec9fd992a3785"
}
]
},
/* libneon is required to build libmusicbrainz */
{
"name": "libneon",
"config-opts": [
"--enable-shared",
"--with-gssapi",
"--with-libxml2"
],
"sources": [
{
"type": "archive",
"url": "http://www.webdav.org/neon/neon-0.30.2.tar.gz",
"sha256": "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca"
}
]
},
/* libmusicbrainz is required for Audio CD track listing support */
{
"name": "libmusicbrainz",
"buildsystem": "cmake",
"sources": [
{
"type": "archive",
"url": "https://github.com/metabrainz/libmusicbrainz/releases/download/release-5.1.0/libmusicbrainz-5.1.0.tar.gz",
"sha256": "6749259e89bbb273f3f5ad7acdffb7c47a2cf8fcaeab4c4695484cef5f4c6b46"
}
]
},
{
"name": "rhythmbox",
"config-opts": [ "--disable-more-warnings" ],
Expand Down

0 comments on commit 0fd975b

Please sign in to comment.