unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Add OggVorbis support to moc
@ 2017-04-03 19:33 Mark Meyer
  2017-04-04 13:28 ` Tobias Geerinckx-Rice
  2017-04-04 14:08 ` Kei Kebreau
  0 siblings, 2 replies; 5+ messages in thread
From: Mark Meyer @ 2017-04-03 19:33 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 94 bytes --]

Hi list,
please consider the attached patch, it adds OggVorbis support to moc.

Cheers, Mark


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: moc-ogg --]
[-- Type: text/x-patch, Size: 818 bytes --]

From 9517f2beea0ab4199ad5d558bfcab82a5df713bd Mon Sep 17 00:00:00 2001
From: Mark Meyer <mark@ofosos.org>
Date: Mon, 3 Apr 2017 21:29:25 +0200
Subject: [PATCH] 2017-04-03 Mark Meyer <mark@ofosos.org>

* gnu/packages/music.scm (moc): Add OggVorbis support.
---
 gnu/packages/music.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 2f70945c6..8f3c96865 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2236,6 +2236,8 @@ with a number of bugfixes and changes to improve IT playback.")
        ("libmodplug" ,libmodplug)
        ("libmpcdec" ,libmpcdec)
        ("libmad" ,libmad)
+       ("libogg" ,libogg)
+       ("libvorbis" ,libvorbis)
        ("ncurses" ,ncurses)
        ("openssl" ,openssl)
        ("sasl" ,cyrus-sasl)
-- 
2.12.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: Add OggVorbis support to moc
  2017-04-03 19:33 Add OggVorbis support to moc Mark Meyer
@ 2017-04-04 13:28 ` Tobias Geerinckx-Rice
  2017-04-04 14:08 ` Kei Kebreau
  1 sibling, 0 replies; 5+ messages in thread
From: Tobias Geerinckx-Rice @ 2017-04-04 13:28 UTC (permalink / raw)
  To: mark, guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 518 bytes --]

Mark,

On 03/04/17 21:33, Mark Meyer wrote:
> Hi list,

Hi!

Patches like this will (or should) get more attention on
guix-patches@gnu.org. guix-devel is for more general discussion.

> please consider the attached patch, it adds OggVorbis support to moc.

Applied as 6beaa5a02a516c061c2ff86ce4beb43374015194, with some changes
to the commit message. Please take a look.

Also: your patch had ‘2017-04-03 Mark Meyer <mark@ofosos.org>’ as the
commit title. Was this intended?

Thanks!

T G-R


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 504 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Add OggVorbis support to moc
  2017-04-03 19:33 Add OggVorbis support to moc Mark Meyer
  2017-04-04 13:28 ` Tobias Geerinckx-Rice
@ 2017-04-04 14:08 ` Kei Kebreau
  2017-04-04 14:12   ` Kei Kebreau
  2017-04-04 15:36   ` Mark Meyer
  1 sibling, 2 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-04-04 14:08 UTC (permalink / raw)
  To: Mark Meyer; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1148 bytes --]

Mark Meyer <mark@ofosos.org> writes:

> Hi list,
> please consider the attached patch, it adds OggVorbis support to moc.
>
> Cheers, Mark
>
> From 9517f2beea0ab4199ad5d558bfcab82a5df713bd Mon Sep 17 00:00:00 2001
> From: Mark Meyer <mark@ofosos.org>
> Date: Mon, 3 Apr 2017 21:29:25 +0200
> Subject: [PATCH] 2017-04-03 Mark Meyer <mark@ofosos.org>
>
> * gnu/packages/music.scm (moc): Add OggVorbis support.
> ---
>  gnu/packages/music.scm | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index 2f70945c6..8f3c96865 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -2236,6 +2236,8 @@ with a number of bugfixes and changes to improve IT playback.")
>         ("libmodplug" ,libmodplug)
>         ("libmpcdec" ,libmpcdec)
>         ("libmad" ,libmad)
> +       ("libogg" ,libogg)
> +       ("libvorbis" ,libvorbis)
>         ("ncurses" ,ncurses)
>         ("openssl" ,openssl)
>         ("sasl" ,cyrus-sasl)

It seems that Ogg Vorbis support already works in this package, probably
because of ffmpeg support. Do Ogg Vorbis files not work for you without
this patch?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Add OggVorbis support to moc
  2017-04-04 14:08 ` Kei Kebreau
@ 2017-04-04 14:12   ` Kei Kebreau
  2017-04-04 15:36   ` Mark Meyer
  1 sibling, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-04-04 14:12 UTC (permalink / raw)
  To: Mark Meyer; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1319 bytes --]

Kei Kebreau <kei@openmailbox.org> writes:

> Mark Meyer <mark@ofosos.org> writes:
>
>> Hi list,
>> please consider the attached patch, it adds OggVorbis support to moc.
>>
>> Cheers, Mark
>>
>> From 9517f2beea0ab4199ad5d558bfcab82a5df713bd Mon Sep 17 00:00:00 2001
>> From: Mark Meyer <mark@ofosos.org>
>> Date: Mon, 3 Apr 2017 21:29:25 +0200
>> Subject: [PATCH] 2017-04-03 Mark Meyer <mark@ofosos.org>
>>
>> * gnu/packages/music.scm (moc): Add OggVorbis support.
>> ---
>>  gnu/packages/music.scm | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
>> index 2f70945c6..8f3c96865 100644
>> --- a/gnu/packages/music.scm
>> +++ b/gnu/packages/music.scm
>> @@ -2236,6 +2236,8 @@ with a number of bugfixes and changes to improve IT playback.")
>>         ("libmodplug" ,libmodplug)
>>         ("libmpcdec" ,libmpcdec)
>>         ("libmad" ,libmad)
>> +       ("libogg" ,libogg)
>> +       ("libvorbis" ,libvorbis)
>>         ("ncurses" ,ncurses)
>>         ("openssl" ,openssl)
>>         ("sasl" ,cyrus-sasl)
>
> It seems that Ogg Vorbis support already works in this package, probably
> because of ffmpeg support. Do Ogg Vorbis files not work for you without
> this patch?

Oh, I see the patch has already been applied. I guess we'll see how this
affects things.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Add OggVorbis support to moc
  2017-04-04 14:08 ` Kei Kebreau
  2017-04-04 14:12   ` Kei Kebreau
@ 2017-04-04 15:36   ` Mark Meyer
  1 sibling, 0 replies; 5+ messages in thread
From: Mark Meyer @ 2017-04-04 15:36 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

They're not working for me. Specifically ogg Streaming.

Cheers, Mark

On Tue, Apr 4, 2017, at 16:08, Kei Kebreau wrote:
> Mark Meyer <mark@ofosos.org> writes:
> 
> > Hi list,
> > please consider the attached patch, it adds OggVorbis support to moc.
> >
> > Cheers, Mark
> >
> > From 9517f2beea0ab4199ad5d558bfcab82a5df713bd Mon Sep 17 00:00:00 2001
> > From: Mark Meyer <mark@ofosos.org>
> > Date: Mon, 3 Apr 2017 21:29:25 +0200
> > Subject: [PATCH] 2017-04-03 Mark Meyer <mark@ofosos.org>
> >
> > * gnu/packages/music.scm (moc): Add OggVorbis support.
> > ---
> >  gnu/packages/music.scm | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> > index 2f70945c6..8f3c96865 100644
> > --- a/gnu/packages/music.scm
> > +++ b/gnu/packages/music.scm
> > @@ -2236,6 +2236,8 @@ with a number of bugfixes and changes to improve IT playback.")
> >         ("libmodplug" ,libmodplug)
> >         ("libmpcdec" ,libmpcdec)
> >         ("libmad" ,libmad)
> > +       ("libogg" ,libogg)
> > +       ("libvorbis" ,libvorbis)
> >         ("ncurses" ,ncurses)
> >         ("openssl" ,openssl)
> >         ("sasl" ,cyrus-sasl)
> 
> It seems that Ogg Vorbis support already works in this package, probably
> because of ffmpeg support. Do Ogg Vorbis files not work for you without
> this patch?
> Email had 1 attachment:
> + signature.asc
>   1k (application/pgp-signature)


-- 
  Mark Meyer
  mark@ofosos.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-04-04 15:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-03 19:33 Add OggVorbis support to moc Mark Meyer
2017-04-04 13:28 ` Tobias Geerinckx-Rice
2017-04-04 14:08 ` Kei Kebreau
2017-04-04 14:12   ` Kei Kebreau
2017-04-04 15:36   ` Mark Meyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).