Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Mixxx DJ app and Python

Reply
Thread Tools

Mixxx DJ app and Python

 
 
mikprog@gmail.com
Guest
Posts: n/a
 
      01-28-2013

Hi guys,

I am thinking of driving a DJ application from Python.
I am running Linux and I found the Mixxx app.
Does anyone know if there are python bindings, or if this is possible at all?
or does anyone have experience with another software that does the same DJ thing?

I have also found the pymixxx module that I could install... but I didn't find any documentation so far or example code that could help me start (I'm keeping on searching).

Finally maybe that there is any DJ app that could be driven by pygame.midi?

Any idea appreciated.
Sorry to fail to be more specific.

Mik

PS: I've reposted this message as the previous subject (software app and Python: any experience?) didn't make any sense
 
Reply With Quote
 
 
 
 
David Hutto
Guest
Posts: n/a
 
      01-29-2013
On Mon, Jan 28, 2013 at 10:10 AM, <> wrote:
>
> Hi guys,
>
> I am thinking of driving a DJ application from Python.
> I am running Linux and I found the Mixxx app.
> Does anyone know if there are python bindings, or if this is possible at all?
> or does anyone have experience with another software that does the same DJ thing?
>
> I have also found the pymixxx module that I could install... but I didn't find any documentation so far or example code that could help me start (I'm keeping on searching).
>
> Finally maybe that there is any DJ app that could be driven by pygame.midi?
>
> Any idea appreciated.
> Sorry to fail to be more specific.


I'd just go with a command line app that triggered a .wav file at
certain points using time.sleep(x)

Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
 
 
 
David Hutto
Guest
Posts: n/a
 
      01-29-2013
On Tue, Jan 29, 2013 at 11:06 AM, David Hutto <> wrote:
> On Mon, Jan 28, 2013 at 10:10 AM, <> wrote:
>>
>> Hi guys,
>>
>> I am thinking of driving a DJ application from Python.
>> I am running Linux and I found the Mixxx app.
>> Does anyone know if there are python bindings, or if this is possible at all?
>> or does anyone have experience with another software that does the same DJ thing?
>>


Hydrogen, and audacity work perfectly together.


--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
David Hutto
Guest
Posts: n/a
 
      01-29-2013
>>> Does anyone know if there are python bindings, or if this is possible at all?
>>> or does anyone have experience with another software that does the same DJ thing?
>>>

>
>Hydrogen, and audacity work perfectly together.



What I was about to do is take the mic, get the soundtrack/beat to the
song going, and then plug it into audacity for further modification,
or you can roll your own.

--


Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
mikprog@gmail.com
Guest
Posts: n/a
 
      01-29-2013
On Tuesday, January 29, 2013 4:13:09 PM UTC, David Hutto wrote:
[..]
>
> >> or does anyone have experience with another software that does the same DJ thing?

>
>
>
>
> Hydrogen, and audacity work perfectly together.



Hi David,
thanks for your reply.
I am not sure though that this is going to help me.
We have built a kind of basic controller that sends commands via bluetooth.
Then I should have some device (like a linux pc or raspberry Pi) where I have my applications that listen for these bluetooth commands and drives a DJ application accordingly (like mixing two sounds, sync them etc).

Obviously to write the whole application will take ages and I saw that the Mixxx one does everything I want.
So I am searching for a way to interface to it programatically.

Do you mean that Hydrogen and Audacity would replace the Mixxx app and I can call their functionality from Python?
Or were you thinking about something else?

Thanks,
Mik
 
Reply With Quote
 
mikprog@gmail.com
Guest
Posts: n/a
 
      01-29-2013
On Tuesday, January 29, 2013 4:13:09 PM UTC, David Hutto wrote:
[..]
>
> >> or does anyone have experience with another software that does the same DJ thing?

>
>
>
>
> Hydrogen, and audacity work perfectly together.



Hi David,
thanks for your reply.
I am not sure though that this is going to help me.
We have built a kind of basic controller that sends commands via bluetooth.
Then I should have some device (like a linux pc or raspberry Pi) where I have my applications that listen for these bluetooth commands and drives a DJ application accordingly (like mixing two sounds, sync them etc).

Obviously to write the whole application will take ages and I saw that the Mixxx one does everything I want.
So I am searching for a way to interface to it programatically.

Do you mean that Hydrogen and Audacity would replace the Mixxx app and I can call their functionality from Python?
Or were you thinking about something else?

Thanks,
Mik
 
Reply With Quote
 
David Hutto
Guest
Posts: n/a
 
      01-29-2013
On Tue, Jan 29, 2013 at 11:16 AM, David Hutto <> wrote:
>>>> Does anyone know if there are python bindings, or if this is possible at all?
>>>> or does anyone have experience with another software that does the same DJ thing?
>>>>

>>
>>Hydrogen, and audacity work perfectly together.

>
>

What I was about to do is take the output to the headphones, get the
soundtrack/beat to the
song going, and then plug it into audacity(mic) for further modification,
or you can roll your own.

> --
>
>
> Best Regards,
> David Hutto
> CEO: http://www.hitwebdevelopment.com




--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
David Hutto
Guest
Posts: n/a
 
      01-29-2013
On Tue, Jan 29, 2013 at 11:18 AM, <> wrote:
> On Tuesday, January 29, 2013 4:13:09 PM UTC, David Hutto wrote:
> [..]
>>
>> >> or does anyone have experience with another software that does the same DJ thing?

>>
>>
>>
>>
>> Hydrogen, and audacity work perfectly together.

>
>
> Hi David,
> thanks for your reply.
> I am not sure though that this is going to help me.
> We have built a kind of basic controller that sends commands via bluetooth.
> Then I should have some device (like a linux pc or raspberry Pi) where I have my applications that listen for these bluetooth commands and drives a DJ application accordingly (like mixing two sounds, sync them etc).
>
> Obviously to write the whole application will take ages and I saw that the Mixxx one does everything I want.
> So I am searching for a way to interface to it programatically.



Well you can just use their(Mixx's) source code that they used from
another wav form manipulation library(more than likely), after the
trigger from the bluetooth. If you're talking voice, and music to
sync, then either go with transmitting at the same, or take two
receivers(one for each transmitter), and run them in unison on
different frequencies, after they've been received..

I've never tried this, but it seems logical.

>
> Do you mean that Hydrogen and Audacity would replace the Mixxx app and I can call their functionality from Python?
> Or were you thinking about something else?
>
> Thanks,
> Mik
> --
> http://mail.python.org/mailman/listinfo/python-list




--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
Ben
Guest
Posts: n/a
 
      01-29-2013
This may not be too helpful, but I built a TCP server into the Mixxx application (in C++). I placed the server in ratecontroller (as I needed to vary the rate remotely). I then could send and receive TCP packets with a singleboard computer that ran a python client.

It wasn't too bad. If you want I can see if I can release the server code.

On Tuesday, January 29, 2013 11:19:34 AM UTC-5, David Hutto wrote:
> On Tue, Jan 29, 2013 at 11:16 AM, David Hutto <> wrote:
>
> >>>> Does anyone know if there are python bindings, or if this is possible at all?

>
> >>>> or does anyone have experience with another software that does the same DJ thing?

>
> >>>>

>
> >>

>
> >>Hydrogen, and audacity work perfectly together.

>
> >

>
> >

>
> What I was about to do is take the output to the headphones, get the
>
> soundtrack/beat to the
>
> song going, and then plug it into audacity(mic) for further modification,
>
> or you can roll your own.
>
>
>
> > --

>
> >

>
> >

>
> > Best Regards,

>
> > David Hutto

>
> > CEO: http://www.hitwebdevelopment.com

>
>
>
>
>
>
>
> --
>
> Best Regards,
>
> David Hutto
>
> CEO: http://www.hitwebdevelopment.com


 
Reply With Quote
 
Ben
Guest
Posts: n/a
 
      01-29-2013
This may not be too helpful, but I built a TCP server into the Mixxx application (in C++). I placed the server in ratecontroller (as I needed to vary the rate remotely). I then could send and receive TCP packets with a singleboard computer that ran a python client.

It wasn't too bad. If you want I can see if I can release the server code.

On Tuesday, January 29, 2013 11:19:34 AM UTC-5, David Hutto wrote:
> On Tue, Jan 29, 2013 at 11:16 AM, David Hutto <> wrote:
>
> >>>> Does anyone know if there are python bindings, or if this is possible at all?

>
> >>>> or does anyone have experience with another software that does the same DJ thing?

>
> >>>>

>
> >>

>
> >>Hydrogen, and audacity work perfectly together.

>
> >

>
> >

>
> What I was about to do is take the output to the headphones, get the
>
> soundtrack/beat to the
>
> song going, and then plug it into audacity(mic) for further modification,
>
> or you can roll your own.
>
>
>
> > --

>
> >

>
> >

>
> > Best Regards,

>
> > David Hutto

>
> > CEO: http://www.hitwebdevelopment.com

>
>
>
>
>
>
>
> --
>
> Best Regards,
>
> David Hutto
>
> CEO: http://www.hitwebdevelopment.com


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
MS Access DB used by both a local App and .net Web App JonnyD ASP .Net 16 10-31-2005 08:41 PM
[Newbie] Different of Smart Device App and ASP.Net Mobile Web App Rico ASP .Net 0 04-29-2005 01:35 PM
newbie question: embedding Python into a C++ app and calling app functions davout Python 0 08-04-2004 03:26 PM
win app and web app mimi ASP .Net 1 07-29-2004 03:19 AM
Is SOAP the best RPC to use between a Java app and a COM based app? TheRookie Java 0 01-19-2004 07:27 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57