Wishlist: mp2 & MUSICAM

Bug #737295 reported by Thorsten Stuppi
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Mixxx
Triaged
Wishlist
Unassigned

Bug Description

Hello,
I don't know whether this is the right place...

There is a simple (and I think quite handy) possibility to let mixxx play mp2 and MUSICAM-files:

In /src/soundsourcemp3.cpp you see the function

QList<QString> SoundSourceMp3::supportedFileExtensions()
{
QList<QString> list;
list.push_back("mp3");
return list;
}

Simply add

list.push_back("mp2");
list.push_back("mus");

so it reads:
QList<QString> SoundSourceMp3::supportedFileExtensions()
{
QList<QString> list;
list.push_back("mp3");
list.push_back("mp2");
list.push_back("mus");

return list;
}

and do build.

After that, .mp2 and .mus-files will be scanned for library and will be displayed in your browser.
libmad will (!) do decoding since mpeg-audio layer 2 decoding is implemented.

Tags: easy
RJ Skerry-Ryan (rryan)
Changed in mixxx:
status: New → Confirmed
importance: Undecided → Wishlist
tags: added: easy
Revision history for this message
Harsha Siriwardena (harshadura) wrote :

Hi,
I have fixed it and added a merge request here: https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362

Changed in mixxx:
assignee: nobody → Harsha Siriwardena (harshadura)
status: Confirmed → In Progress
Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote : Re: [Bug 737295] Re: Wishlist: mp2 & MUSICAM

Wow, that's cool!
Best regards.
ts
Harsha Siriwardena <email address hidden> hat am 29. April 2013 um 08:01
geschrieben:
> Hi,
> I have fixed it and added a merge request here:
> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
>
> ** Changed in: mixxx
> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
>
> ** Changed in: mixxx
> Status: Confirmed => In Progress
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/737295
>
> Title:
> Wishlist: mp2 & MUSICAM
>
> Status in Mixxx:
> In Progress
>
> Bug description:
> Hello,
> I don't know whether this is the right place...
>
> There is a simple (and I think quite handy) possibility to let mixxx
> play mp2 and MUSICAM-files:
>
> In /src/soundsourcemp3.cpp you see the function
>
> QList<QString> SoundSourceMp3::supportedFileExtensions()
> {
> QList<QString> list;
> list.push_back("mp3");
> return list;
> }
>
> Simply add
>
> list.push_back("mp2");
> list.push_back("mus");
>
> so it reads:
> QList<QString> SoundSourceMp3::supportedFileExtensions()
> {
> QList<QString> list;
> list.push_back("mp3");
> list.push_back("mp2");
> list.push_back("mus");
>
> return list;
> }
>
> and do build.
>
> After that, .mp2 and .mus-files will be scanned for library and will be
> displayed in your browser.
> libmad will (!) do decoding since mpeg-audio layer 2 decoding is
> implemented.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
Ingenieurbuero Stuppi
Wueppelser Altendeich 14
D-26434 Wangerland
Tel.: +49(0)4425969111
FAX: +49(0)32224113640
http://stuppi-engineering.de

Revision history for this message
RJ Skerry-Ryan (rryan) wrote :

Hi Harsha,

Have you tested it?

thanks,
RJ

On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
<email address hidden>> wrote:

> Hi,
> I have fixed it and added a merge request here:
> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
>
> ** Changed in: mixxx
> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
>
> ** Changed in: mixxx
> Status: Confirmed => In Progress
>
> --
> You received this bug notification because you are a member of Mixxx
> Development Team, which is subscribed to Mixxx.
> https://bugs.launchpad.net/bugs/737295
>
> Title:
> Wishlist: mp2 & MUSICAM
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
>

Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote :

Ehm, well, I habe been working with mostly mp2 for over two years. In fact and
as far as I can say: It works. And I can seen no reason why it should not....
However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.

Bye
Thorsten
RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29 geschrieben:
> Hi Harsha,
>
> Have you tested it?
>
> thanks,
> RJ
>
>
> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> <email address hidden>> wrote:
>
> > Hi,
> > I have fixed it and added a merge request here:
> > https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> >
> > ** Changed in: mixxx
> > Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> >
> > ** Changed in: mixxx
> > Status: Confirmed => In Progress
> >
> > --
> > You received this bug notification because you are a member of Mixxx
> > Development Team, which is subscribed to Mixxx.
> > https://bugs.launchpad.net/bugs/737295
> >
> > Title:
> > Wishlist: mp2 & MUSICAM
> >
> > To manage notifications about this bug go to:
> > https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> >
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/737295
>
> Title:
> Wishlist: mp2 & MUSICAM
>
> Status in Mixxx:
> In Progress
>
> Bug description:
> Hello,
> I don't know whether this is the right place...
>
> There is a simple (and I think quite handy) possibility to let mixxx
> play mp2 and MUSICAM-files:
>
> In /src/soundsourcemp3.cpp you see the function
>
> QList<QString> SoundSourceMp3::supportedFileExtensions()
> {
> QList<QString> list;
> list.push_back("mp3");
> return list;
> }
>
> Simply add
>
> list.push_back("mp2");
> list.push_back("mus");
>
> so it reads:
> QList<QString> SoundSourceMp3::supportedFileExtensions()
> {
> QList<QString> list;
> list.push_back("mp3");
> list.push_back("mp2");
> list.push_back("mus");
>
> return list;
> }
>
> and do build.
>
> After that, .mp2 and .mus-files will be scanned for library and will be
> displayed in your browser.
> libmad will (!) do decoding since mpeg-audio layer 2 decoding is
> implemented.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
Ingenieurbuero Stuppi
Wueppelser Altendeich 14
D-26434 Wangerland
Tel.: +49(0)4425969111
FAX: +49(0)32224113640
http://stuppi-engineering.de

Revision history for this message
RJ Skerry-Ryan (rryan) wrote :
Download full text (3.2 KiB)

Thorsten -- you mean mp2 within Mixxx using the approach you described in
the report?

The main issue I am concerned with is that on OS X we do not use libmad.
Instead we use the built-in OS MP3 decoder. It might not support MP2 or
MUSICAM.

On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <<email address hidden>
> wrote:

> Ehm, well, I habe been working with mostly mp2 for over two years. In fact
> and
> as far as I can say: It works. And I can seen no reason why it should
> not....
> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
>
> Bye
> Thorsten
> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> geschrieben:
> > Hi Harsha,
> >
> > Have you tested it?
> >
> > thanks,
> > RJ
> >
> >
> > On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> > <email address hidden>> wrote:
> >
> > > Hi,
> > > I have fixed it and added a merge request here:
> > > https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> > >
> > > ** Changed in: mixxx
> > > Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> > >
> > > ** Changed in: mixxx
> > > Status: Confirmed => In Progress
> > >
> > > --
> > > You received this bug notification because you are a member of Mixxx
> > > Development Team, which is subscribed to Mixxx.
> > > https://bugs.launchpad.net/bugs/737295
> > >
> > > Title:
> > > Wishlist: mp2 & MUSICAM
> > >
> > > To manage notifications about this bug go to:
> > > https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> > >
> >
> > --
> > You received this bug notification because you are subscribed to the bug
> > report.
> > https://bugs.launchpad.net/bugs/737295
> >
> > Title:
> > Wishlist: mp2 & MUSICAM
> >
> > Status in Mixxx:
> > In Progress
> >
> > Bug description:
> > Hello,
> > I don't know whether this is the right place...
> >
> > There is a simple (and I think quite handy) possibility to let mixxx
> > play mp2 and MUSICAM-files:
> >
> > In /src/soundsourcemp3.cpp you see the function
> >
> > QList<QString> SoundSourceMp3::supportedFileExtensions()
> > {
> > QList<QString> list;
> > list.push_back("mp3");
> > return list;
> > }
> >
> > Simply add
> >
> > list.push_back("mp2");
> > list.push_back("mus");
> >
> > so it reads:
> > QList<QString> SoundSourceMp3::supportedFileExtensions()
> > {
> > QList<QString> list;
> > list.push_back("mp3");
> > list.push_back("mp2");
> > list.push_back("mus");
> >
> > return list;
> > }
> >
> > and do build.
> >
> > After that, .mp2 and .mus-files will be scanned for library and will be
> > displayed in your browser.
> > libmad will (!) do decoding since mpeg-audio layer 2 decoding is
> > implemented.
> >
> > To manage notifications about this bug go to:
> > https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> Ingenieurbuero Stuppi
> Wueppelser Altendeich 14
> D-26434 Wangerland
> Tel.: +49(0)4425969111
> FAX: +49(0)32224113640
> http://stuppi-engineering.de
>
> --
> You received this bug notification because you are a member of Mixxx
> Development Team, which is subscribed to Mixxx.
> https://bugs.launchpad.net/bugs/737295
>
> Title:
> Wishlist: ...

Read more...

Revision history for this message
Harsha Siriwardena (harshadura) wrote :
Download full text (4.8 KiB)

Hi Ryan,

I have tested it on Linux and Windows. It works fine.

Harsha Siriwardena
[harshadura.net]

On Mon, Apr 29, 2013 at 8:47 PM, RJ Ryan <email address hidden> wrote:

> Thorsten -- you mean mp2 within Mixxx using the approach you described in
> the report?
>
> The main issue I am concerned with is that on OS X we do not use libmad.
> Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> MUSICAM.
>
> On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <
> <email address hidden>
> > wrote:
>
> > Ehm, well, I habe been working with mostly mp2 for over two years. In
> fact
> > and
> > as far as I can say: It works. And I can seen no reason why it should
> > not....
> > However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
> >
> > Bye
> > Thorsten
> > RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> > geschrieben:
> > > Hi Harsha,
> > >
> > > Have you tested it?
> > >
> > > thanks,
> > > RJ
> > >
> > >
> > > On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> > > <email address hidden>> wrote:
> > >
> > > > Hi,
> > > > I have fixed it and added a merge request here:
> > > >
> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> > > >
> > > > ** Changed in: mixxx
> > > > Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> > > >
> > > > ** Changed in: mixxx
> > > > Status: Confirmed => In Progress
> > > >
> > > > --
> > > > You received this bug notification because you are a member of Mixxx
> > > > Development Team, which is subscribed to Mixxx.
> > > > https://bugs.launchpad.net/bugs/737295
> > > >
> > > > Title:
> > > > Wishlist: mp2 & MUSICAM
> > > >
> > > > To manage notifications about this bug go to:
> > > > https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> > > >
> > >
> > > --
> > > You received this bug notification because you are subscribed to the
> bug
> > > report.
> > > https://bugs.launchpad.net/bugs/737295
> > >
> > > Title:
> > > Wishlist: mp2 & MUSICAM
> > >
> > > Status in Mixxx:
> > > In Progress
> > >
> > > Bug description:
> > > Hello,
> > > I don't know whether this is the right place...
> > >
> > > There is a simple (and I think quite handy) possibility to let mixxx
> > > play mp2 and MUSICAM-files:
> > >
> > > In /src/soundsourcemp3.cpp you see the function
> > >
> > > QList<QString> SoundSourceMp3::supportedFileExtensions()
> > > {
> > > QList<QString> list;
> > > list.push_back("mp3");
> > > return list;
> > > }
> > >
> > > Simply add
> > >
> > > list.push_back("mp2");
> > > list.push_back("mus");
> > >
> > > so it reads:
> > > QList<QString> SoundSourceMp3::supportedFileExtensions()
> > > {
> > > QList<QString> list;
> > > list.push_back("mp3");
> > > list.push_back("mp2");
> > > list.push_back("mus");
> > >
> > > return list;
> > > }
> > >
> > > and do build.
> > >
> > > After that, .mp2 and .mus-files will be scanned for library and will
> be
> > > displayed in your browser.
> > > libmad will (!) do decoding since mpeg-audio layer 2 decoding is
> > > implemented.
> > >
> > > To manage notifications about this bug go to:
> > > https://b...

Read more...

Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote :
Download full text (3.8 KiB)

Ah, okay. I will send you an EBU (European Brodcast Union)-MUSICAM-File
as an attachment with the next mail. If the mail does not come through,
please let me know.
Regards
ts

Thorsten Stuppi
Dipl.-Ing. Nachrichtentechnik

Ingenieurbuero Stuppi
Wueppelser Altendeich 14
D-26434 Wangerland

Phone: +49 (0) 44 25 - 96 91 11
GSM: +49 (0) 160 - 4 22 83 95
FAX: +49 (0) 180 - 35 51 86 99 86
EMail: <email address hidden>
Site: http://www.stuppi-engineering.de

On 04/29/13 17:17, RJ Ryan wrote:
> Thorsten -- you mean mp2 within Mixxx using the approach you described in
> the report?
>
> The main issue I am concerned with is that on OS X we do not use libmad.
> Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> MUSICAM.
>
> On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <<email address hidden>
>> wrote:
>
>> Ehm, well, I habe been working with mostly mp2 for over two years. In fact
>> and
>> as far as I can say: It works. And I can seen no reason why it should
>> not....
>> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
>>
>> Bye
>> Thorsten
>> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
>> geschrieben:
>>> Hi Harsha,
>>>
>>> Have you tested it?
>>>
>>> thanks,
>>> RJ
>>>
>>>
>>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
>>> <email address hidden>> wrote:
>>>
>>>> Hi,
>>>> I have fixed it and added a merge request here:
>>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
>>>>
>>>> ** Changed in: mixxx
>>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
>>>>
>>>> ** Changed in: mixxx
>>>> Status: Confirmed => In Progress
>>>>
>>>> --
>>>> You received this bug notification because you are a member of Mixxx
>>>> Development Team, which is subscribed to Mixxx.
>>>> https://bugs.launchpad.net/bugs/737295
>>>>
>>>> Title:
>>>> Wishlist: mp2 & MUSICAM
>>>>
>>>> To manage notifications about this bug go to:
>>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
>>>>
>>>
>>> --
>>> You received this bug notification because you are subscribed to the bug
>>> report.
>>> https://bugs.launchpad.net/bugs/737295
>>>
>>> Title:
>>> Wishlist: mp2 & MUSICAM
>>>
>>> Status in Mixxx:
>>> In Progress
>>>
>>> Bug description:
>>> Hello,
>>> I don't know whether this is the right place...
>>>
>>> There is a simple (and I think quite handy) possibility to let mixxx
>>> play mp2 and MUSICAM-files:
>>>
>>> In /src/soundsourcemp3.cpp you see the function
>>>
>>> QList<QString> SoundSourceMp3::supportedFileExtensions()
>>> {
>>> QList<QString> list;
>>> list.push_back("mp3");
>>> return list;
>>> }
>>>
>>> Simply add
>>>
>>> list.push_back("mp2");
>>> list.push_back("mus");
>>>
>>> so it reads:
>>> QList<QString> SoundSourceMp3::supportedFileExtensions()
>>> {
>>> QList<QString> list;
>>> list.push_back("mp3");
>>> list.push_back("mp2");
>>> list.push_back("mus");
>>>
>>> return list;
>>> }
>>>
>>> and do build.
>>>
>>> After that, .mp2 and .mus-files will be scanned for library and will be
>>> displayed in your browser.
>>> libmad will (!) do decoding since mpeg-a...

Read more...

Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote : Test-File:Re: [Bug 737295] Re: Wishlist: mp2 & MUSICAM
Download full text (3.7 KiB)

Any private account where I can sent you the test-file (about 9MB)?

Thorsten Stuppi
Dipl.-Ing. Nachrichtentechnik

Ingenieurbuero Stuppi
Wueppelser Altendeich 14
D-26434 Wangerland

Phone: +49 (0) 44 25 - 96 91 11
GSM: +49 (0) 160 - 4 22 83 95
FAX: +49 (0) 180 - 35 51 86 99 86
EMail: <email address hidden>
Site: http://www.stuppi-engineering.de

On 04/29/13 17:17, RJ Ryan wrote:
> Thorsten -- you mean mp2 within Mixxx using the approach you described in
> the report?
>
> The main issue I am concerned with is that on OS X we do not use libmad.
> Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> MUSICAM.
>
> On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <<email address hidden>
>> wrote:
>
>> Ehm, well, I habe been working with mostly mp2 for over two years. In fact
>> and
>> as far as I can say: It works. And I can seen no reason why it should
>> not....
>> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
>>
>> Bye
>> Thorsten
>> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
>> geschrieben:
>>> Hi Harsha,
>>>
>>> Have you tested it?
>>>
>>> thanks,
>>> RJ
>>>
>>>
>>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
>>> <email address hidden>> wrote:
>>>
>>>> Hi,
>>>> I have fixed it and added a merge request here:
>>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
>>>>
>>>> ** Changed in: mixxx
>>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
>>>>
>>>> ** Changed in: mixxx
>>>> Status: Confirmed => In Progress
>>>>
>>>> --
>>>> You received this bug notification because you are a member of Mixxx
>>>> Development Team, which is subscribed to Mixxx.
>>>> https://bugs.launchpad.net/bugs/737295
>>>>
>>>> Title:
>>>> Wishlist: mp2 & MUSICAM
>>>>
>>>> To manage notifications about this bug go to:
>>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
>>>>
>>>
>>> --
>>> You received this bug notification because you are subscribed to the bug
>>> report.
>>> https://bugs.launchpad.net/bugs/737295
>>>
>>> Title:
>>> Wishlist: mp2 & MUSICAM
>>>
>>> Status in Mixxx:
>>> In Progress
>>>
>>> Bug description:
>>> Hello,
>>> I don't know whether this is the right place...
>>>
>>> There is a simple (and I think quite handy) possibility to let mixxx
>>> play mp2 and MUSICAM-files:
>>>
>>> In /src/soundsourcemp3.cpp you see the function
>>>
>>> QList<QString> SoundSourceMp3::supportedFileExtensions()
>>> {
>>> QList<QString> list;
>>> list.push_back("mp3");
>>> return list;
>>> }
>>>
>>> Simply add
>>>
>>> list.push_back("mp2");
>>> list.push_back("mus");
>>>
>>> so it reads:
>>> QList<QString> SoundSourceMp3::supportedFileExtensions()
>>> {
>>> QList<QString> list;
>>> list.push_back("mp3");
>>> list.push_back("mp2");
>>> list.push_back("mus");
>>>
>>> return list;
>>> }
>>>
>>> and do build.
>>>
>>> After that, .mp2 and .mus-files will be scanned for library and will be
>>> displayed in your browser.
>>> libmad will (!) do decoding since mpeg-audio layer 2 decoding is
>>> implemented.
>>>
>>> To manage notifications about this bug go to:
>>> https:/...

Read more...

Revision history for this message
RJ Skerry-Ryan (rryan) wrote : Re: [Bug 737295] Re: Wishlist: mp2 & MUSICAM
Download full text (4.5 KiB)

Sounds good -- <email address hidden> please.

On Mon, Apr 29, 2013 at 2:04 PM, Thorsten Stuppi
<email address hidden>wrote:

> Ah, okay. I will send you an EBU (European Brodcast Union)-MUSICAM-File
> as an attachment with the next mail. If the mail does not come through,
> please let me know.
> Regards
> ts
>
> Thorsten Stuppi
> Dipl.-Ing. Nachrichtentechnik
>
> Ingenieurbuero Stuppi
> Wueppelser Altendeich 14
> D-26434 Wangerland
>
> Phone: +49 (0) 44 25 - 96 91 11
> GSM: +49 (0) 160 - 4 22 83 95
> FAX: +49 (0) 180 - 35 51 86 99 86
> EMail: <email address hidden>
> Site: http://www.stuppi-engineering.de
>
> On 04/29/13 17:17, RJ Ryan wrote:
> > Thorsten -- you mean mp2 within Mixxx using the approach you described in
> > the report?
> >
> > The main issue I am concerned with is that on OS X we do not use libmad.
> > Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> > MUSICAM.
> >
> > On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <
> <email address hidden>
> >> wrote:
> >
> >> Ehm, well, I habe been working with mostly mp2 for over two years. In
> fact
> >> and
> >> as far as I can say: It works. And I can seen no reason why it should
> >> not....
> >> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
> >>
> >> Bye
> >> Thorsten
> >> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> >> geschrieben:
> >>> Hi Harsha,
> >>>
> >>> Have you tested it?
> >>>
> >>> thanks,
> >>> RJ
> >>>
> >>>
> >>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> >>> <email address hidden>> wrote:
> >>>
> >>>> Hi,
> >>>> I have fixed it and added a merge request here:
> >>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> >>>>
> >>>> ** Changed in: mixxx
> >>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> >>>>
> >>>> ** Changed in: mixxx
> >>>> Status: Confirmed => In Progress
> >>>>
> >>>> --
> >>>> You received this bug notification because you are a member of Mixxx
> >>>> Development Team, which is subscribed to Mixxx.
> >>>> https://bugs.launchpad.net/bugs/737295
> >>>>
> >>>> Title:
> >>>> Wishlist: mp2 & MUSICAM
> >>>>
> >>>> To manage notifications about this bug go to:
> >>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> >>>>
> >>>
> >>> --
> >>> You received this bug notification because you are subscribed to the
> bug
> >>> report.
> >>> https://bugs.launchpad.net/bugs/737295
> >>>
> >>> Title:
> >>> Wishlist: mp2 & MUSICAM
> >>>
> >>> Status in Mixxx:
> >>> In Progress
> >>>
> >>> Bug description:
> >>> Hello,
> >>> I don't know whether this is the right place...
> >>>
> >>> There is a simple (and I think quite handy) possibility to let mixxx
> >>> play mp2 and MUSICAM-files:
> >>>
> >>> In /src/soundsourcemp3.cpp you see the function
> >>>
> >>> QList<QString> SoundSourceMp3::supportedFileExtensions()
> >>> {
> >>> QList<QString> list;
> >>> list.push_back("mp3");
> >>> return list;
> >>> }
> >>>
> >>> Simply add
> >>>
> >>> list.push_back("mp2");
> >>> list.push_back("mus");
> >>>
> >>> so it reads:
> >>> QList<QString> SoundSourceMp3::supportedFileExtensions...

Read more...

Revision history for this message
Harsha Siriwardena (harshadura) wrote : Re: Test-File:Re: [Bug 737295] Re: Wishlist: mp2 & MUSICAM
Download full text (5.4 KiB)

Hi Thorsten,

Could you please host it at dropbox or Google drive ?

Thank you very much for your helps on resolve this bug.

-Harsha

Harsha Siriwardena
[harshadura.net]

On Mon, Apr 29, 2013 at 11:48 PM, Thorsten Stuppi <<email address hidden>
> wrote:

> Any private account where I can sent you the test-file (about 9MB)?
>
> Thorsten Stuppi
> Dipl.-Ing. Nachrichtentechnik
>
> Ingenieurbuero Stuppi
> Wueppelser Altendeich 14
> D-26434 Wangerland
>
> Phone: +49 (0) 44 25 - 96 91 11
> GSM: +49 (0) 160 - 4 22 83 95
> FAX: +49 (0) 180 - 35 51 86 99 86
> EMail: <email address hidden>
> Site: http://www.stuppi-engineering.de
>
> On 04/29/13 17:17, RJ Ryan wrote:
> > Thorsten -- you mean mp2 within Mixxx using the approach you described in
> > the report?
> >
> > The main issue I am concerned with is that on OS X we do not use libmad.
> > Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> > MUSICAM.
> >
> > On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <
> <email address hidden>
> >> wrote:
> >
> >> Ehm, well, I habe been working with mostly mp2 for over two years. In
> fact
> >> and
> >> as far as I can say: It works. And I can seen no reason why it should
> >> not....
> >> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
> >>
> >> Bye
> >> Thorsten
> >> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> >> geschrieben:
> >>> Hi Harsha,
> >>>
> >>> Have you tested it?
> >>>
> >>> thanks,
> >>> RJ
> >>>
> >>>
> >>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> >>> <email address hidden>> wrote:
> >>>
> >>>> Hi,
> >>>> I have fixed it and added a merge request here:
> >>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> >>>>
> >>>> ** Changed in: mixxx
> >>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> >>>>
> >>>> ** Changed in: mixxx
> >>>> Status: Confirmed => In Progress
> >>>>
> >>>> --
> >>>> You received this bug notification because you are a member of Mixxx
> >>>> Development Team, which is subscribed to Mixxx.
> >>>> https://bugs.launchpad.net/bugs/737295
> >>>>
> >>>> Title:
> >>>> Wishlist: mp2 & MUSICAM
> >>>>
> >>>> To manage notifications about this bug go to:
> >>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> >>>>
> >>>
> >>> --
> >>> You received this bug notification because you are subscribed to the
> bug
> >>> report.
> >>> https://bugs.launchpad.net/bugs/737295
> >>>
> >>> Title:
> >>> Wishlist: mp2 & MUSICAM
> >>>
> >>> Status in Mixxx:
> >>> In Progress
> >>>
> >>> Bug description:
> >>> Hello,
> >>> I don't know whether this is the right place...
> >>>
> >>> There is a simple (and I think quite handy) possibility to let mixxx
> >>> play mp2 and MUSICAM-files:
> >>>
> >>> In /src/soundsourcemp3.cpp you see the function
> >>>
> >>> QList<QString> SoundSourceMp3::supportedFileExtensions()
> >>> {
> >>> QList<QString> list;
> >>> list.push_back("mp3");
> >>> return list;
> >>> }
> >>>
> >>> Simply add
> >>>
> >>> list.push_back("mp2");
> >>> list.push_back("mus");
> >>>
> >>> so it reads:
> >>> QList<QString> SoundSourceMp3::sup...

Read more...

Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote :
Download full text (7.3 KiB)

Hi Harsha,
please do a ftp poll at
Server: ibs.stuppi-engineering.gotdns.org
User: remote
PW: canem07
Directory is "~/for_harsha/"
Hope it runs.
Regards
ts
Harsha Siriwardena <email address hidden> hat am 30. April 2013 um 05:09
geschrieben:
> Hi Thorsten,
>
> Could you please host it at dropbox or Google drive ?
>
> Thank you very much for your helps on resolve this bug.
>
> -Harsha
>
> Harsha Siriwardena
> [harshadura.net]
>
>
> On Mon, Apr 29, 2013 at 11:48 PM, Thorsten Stuppi <<email address hidden>
> > wrote:
>
> > Any private account where I can sent you the test-file (about 9MB)?
> >
> > Thorsten Stuppi
> > Dipl.-Ing. Nachrichtentechnik
> >
> > Ingenieurbuero Stuppi
> > Wueppelser Altendeich 14
> > D-26434 Wangerland
> >
> > Phone: +49 (0) 44 25 - 96 91 11
> > GSM: +49 (0) 160 - 4 22 83 95
> > FAX: +49 (0) 180 - 35 51 86 99 86
> > EMail: <email address hidden>
> > Site: http://www.stuppi-engineering.de
> >
> > On 04/29/13 17:17, RJ Ryan wrote:
> > > Thorsten -- you mean mp2 within Mixxx using the approach you described in
> > > the report?
> > >
> > > The main issue I am concerned with is that on OS X we do not use libmad.
> > > Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> > > MUSICAM.
> > >
> > > On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <
> > <email address hidden>
> > >> wrote:
> > >
> > >> Ehm, well, I habe been working with mostly mp2 for over two years. In
> > fact
> > >> and
> > >> as far as I can say: It works. And I can seen no reason why it should
> > >> not....
> > >> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
> > >>
> > >> Bye
> > >> Thorsten
> > >> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> > >> geschrieben:
> > >>> Hi Harsha,
> > >>>
> > >>> Have you tested it?
> > >>>
> > >>> thanks,
> > >>> RJ
> > >>>
> > >>>
> > >>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> > >>> <email address hidden>> wrote:
> > >>>
> > >>>> Hi,
> > >>>> I have fixed it and added a merge request here:
> > >>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> > >>>>
> > >>>> ** Changed in: mixxx
> > >>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> > >>>>
> > >>>> ** Changed in: mixxx
> > >>>> Status: Confirmed => In Progress
> > >>>>
> > >>>> --
> > >>>> You received this bug notification because you are a member of Mixxx
> > >>>> Development Team, which is subscribed to Mixxx.
> > >>>> https://bugs.launchpad.net/bugs/737295
> > >>>>
> > >>>> Title:
> > >>>> Wishlist: mp2 & MUSICAM
> > >>>>
> > >>>> To manage notifications about this bug go to:
> > >>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> > >>>>
> > >>>
> > >>> --
> > >>> You received this bug notification because you are subscribed to the
> > bug
> > >>> report.
> > >>> https://bugs.launchpad.net/bugs/737295
> > >>>
> > >>> Title:
> > >>> Wishlist: mp2 & MUSICAM
> > >>>
> > >>> Status in Mixxx:
> > >>> In Progress
> > >>>
> > >>> Bug description:
> > >>> Hello,
> > >>> I don't know whether this is the right place...
> > >>>
> > >>> There is a simple (and I think quite handy) possibility...

Read more...

Revision history for this message
Thorsten Stuppi (info-stuppi-engineering) wrote : Re: [Bug 737295] Re: Wishlist: mp2 & MUSICAM
Download full text (6.4 KiB)

Hi Ryan,
please try a ftp-poll at
Server: ibs.stuppi-engineering.gotdns.org
User: remote
PW: canem07
Directoy: "~/for_harsha"
Please contact if there are problems.
Best regards
ts
RJ Ryan <email address hidden> hat am 29. April 2013 um 23:59 geschrieben:
> Sounds good -- <email address hidden> please.
>
>
> On Mon, Apr 29, 2013 at 2:04 PM, Thorsten Stuppi
> <email address hidden>wrote:
>
> > Ah, okay. I will send you an EBU (European Brodcast Union)-MUSICAM-File
> > as an attachment with the next mail. If the mail does not come through,
> > please let me know.
> > Regards
> > ts
> >
> > Thorsten Stuppi
> > Dipl.-Ing. Nachrichtentechnik
> >
> > Ingenieurbuero Stuppi
> > Wueppelser Altendeich 14
> > D-26434 Wangerland
> >
> > Phone: +49 (0) 44 25 - 96 91 11
> > GSM: +49 (0) 160 - 4 22 83 95
> > FAX: +49 (0) 180 - 35 51 86 99 86
> > EMail: <email address hidden>
> > Site: http://www.stuppi-engineering.de
> >
> > On 04/29/13 17:17, RJ Ryan wrote:
> > > Thorsten -- you mean mp2 within Mixxx using the approach you described in
> > > the report?
> > >
> > > The main issue I am concerned with is that on OS X we do not use libmad.
> > > Instead we use the built-in OS MP3 decoder. It might not support MP2 or
> > > MUSICAM.
> > >
> > > On Mon, Apr 29, 2013 at 10:29 AM, Thorsten Stuppi <
> > <email address hidden>
> > >> wrote:
> > >
> > >> Ehm, well, I habe been working with mostly mp2 for over two years. In
> > fact
> > >> and
> > >> as far as I can say: It works. And I can seen no reason why it should
> > >> not....
> > >> However, ocf course, there are no ID-tags implemented with mp2/MUSICAM.
> > >>
> > >> Bye
> > >> Thorsten
> > >> RJ Ryan <email address hidden> hat am 29. April 2013 um 15:29
> > >> geschrieben:
> > >>> Hi Harsha,
> > >>>
> > >>> Have you tested it?
> > >>>
> > >>> thanks,
> > >>> RJ
> > >>>
> > >>>
> > >>> On Mon, Apr 29, 2013 at 2:01 AM, Harsha Siriwardena <
> > >>> <email address hidden>> wrote:
> > >>>
> > >>>> Hi,
> > >>>> I have fixed it and added a merge request here:
> > >>>> https://code.launchpad.net/~harshadura/mixxx/harshadura/+merge/161362
> > >>>>
> > >>>> ** Changed in: mixxx
> > >>>> Assignee: (unassigned) => Harsha Siriwardena (harshadura)
> > >>>>
> > >>>> ** Changed in: mixxx
> > >>>> Status: Confirmed => In Progress
> > >>>>
> > >>>> --
> > >>>> You received this bug notification because you are a member of Mixxx
> > >>>> Development Team, which is subscribed to Mixxx.
> > >>>> https://bugs.launchpad.net/bugs/737295
> > >>>>
> > >>>> Title:
> > >>>> Wishlist: mp2 & MUSICAM
> > >>>>
> > >>>> To manage notifications about this bug go to:
> > >>>> https://bugs.launchpad.net/mixxx/+bug/737295/+subscriptions
> > >>>>
> > >>>
> > >>> --
> > >>> You received this bug notification because you are subscribed to the
> > bug
> > >>> report.
> > >>> https://bugs.launchpad.net/bugs/737295
> > >>>
> > >>> Title:
> > >>> Wishlist: mp2 & MUSICAM
> > >>>
> > >>> Status in Mixxx:
> > >>> In Progress
> > >>>
> > >>> Bug description:
> > >>> Hello,
> > >>> I don't know whether this is the right place...
> > >>>
> > >>> There is a simple (and I think quite handy) possibility to let mixx...

Read more...

Revision history for this message
RJ Skerry-Ryan (rryan) wrote :

Due to lack of progress, marking Triaged and clearing assignee.

Changed in mixxx:
assignee: Harsha Siriwardena (harshadura) → nobody
status: In Progress → Confirmed
status: Confirmed → Triaged
Revision history for this message
Swiftb0y (swiftb0y) wrote :

Mixxx now uses GitHub for bug tracking. This bug has been migrated to:
https://github.com/mixxxdj/mixxx/issues/5820

lock status: Metadata changes locked and limited to project staff
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.