Re: [Mixxx-devel] AutoDJ

2018-01-29 Thread Be
Work on this has started but is currently stalled. Please join the 
discussion on https://github.com/mixxxdj/mixxx/pull/1242


You may also be interested in https://github.com/mixxxdj/mixxx/pull/1360

And as Anast mentioned, most projection discussion happens on Zulip now.


On 01/29/2018 12:13 PM, Alberto Cañete wrote:
Hello, I am new here, but I am very interesting in this project 
because I'm Dj and I am studying computing. So I think that it could 
be a great idea improve AutoDj like the automix of VirtualDj that I 
have used sometimes and I think that it very useful, for my final 
project of my studies. I would like that Mixxx when AutoDj is enable 
there is a function that remove silence. So when a song has 1 or 2 
seconds in silence or when a song is going to end that it sound more 
low, then the following sound can to start play. I hope you understand 
well. Regards,


--
Alberto Cañete


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot


___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Re: [Mixxx-devel] AutoDJ

2018-01-29 Thread Lets talk about the music - talk show
OMMGG Are you FUCKING KIDDING MEE!!!  I removed the this form off my email
MONTHS ago!!

STOP SPAMMING ME!!

On Mon, Jan 29, 2018 at 10:22 AM, Anast Gramm 
wrote:

> On 180129 19:13:18, Alberto Cañete wrote:
> > Hello, I am new here
>
> You should join here, https://mixxx.zulipchat.com and talk about this.
> You can open a new Topic in the development Stream!
>
> > I would like that Mixxx when AutoDj is enable there is a
> > function that remove silence. So when a song has 1 or 2 seconds in
> > silence or when a song is going to end that it sound more low, then the
> > following sound can to start play.
>
> IMO it doesn't look like a bad feature if it could be turned on or off
> easily.
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Get Mixxx, the #1 Free MP3 DJ Mixing software Today
> http://mixxx.org
>
>
> Mixxx-devel mailing list
> Mixxx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mixxx-devel
>



-- 
Website: LetsTalkAbouttheMusic.com

Fb: LTATMRadio.com 
FB Group: LTATM Radio
Twitter: @LTATM_Radio
Spreaker.com >letstalkaboutthemusic
Fundraiser: patreon.com/LTATMRADIO 
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Re: [Mixxx-devel] AutoDJ

2018-01-29 Thread Anast Gramm
On 180129 19:13:18, Alberto Cañete wrote:
> Hello, I am new here

You should join here, https://mixxx.zulipchat.com and talk about this.
You can open a new Topic in the development Stream!

> I would like that Mixxx when AutoDj is enable there is a
> function that remove silence. So when a song has 1 or 2 seconds in
> silence or when a song is going to end that it sound more low, then the
> following sound can to start play.

IMO it doesn't look like a bad feature if it could be turned on or off easily.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel


Re: [Mixxx-devel] AutoDJ Enhancement : Bug #971429

2015-01-03 Thread Daniel Schürmann

Hi DKdennis,

Thank you for all the work! I have just tested your branch, and .. it works!

I can't see the issue you have described. I have set a breakpoint to 
slotAddRandomTrack()

and it breaks only once.

For future review request, you should just do a GitHub Pull request and 
add a comment if there is still work in progress. All Mixxx team members 
will get notified about the code comments.


Here some comments, the rest inline at GitHub:

It just feels scary, that the Auto DJ playlist is empty during the 
automatic addition and setting 1.
I think It would look better, if we have ALLWAYS on track in the 
playlist when setting 1.
So you may just add and offset to the setting value. The current default 
would be 0.

And the default should be 1 (2 in the current implementation)

Allow more than 3 tracks as limits, why not 20?
This is the bar usecase, a barceeper can remove unwanted tracks until he 
has 20 pleasant tracks (a normal sampler runtime).


The feature should also work if the limit is violated for any other reason.
EG, if you increase the limit, tracks should be added after apply.

The feature is already useful without my additional feature requests so. 
So feel free to propose it as merge request, if you are satisfied.


Kind regards,

Daniel







Am 02.01.2015 um 11:49 schrieb Don Dennis:
Hi I'v been working on this (Bug #971429 
https://bugs.launchpad.net/mixxx/+bug/971429) and have implemented 
almost every aspect of the requirement . I'm facing one bug which I 
have not been able to solve yet. I'm totally new to QT .
My implementation checks for the number of tracks remaining in the 
autoDJ play list and as soon as it goes lower than a particular number 
(selected through the preference) it emits a requestTracks signal 
which in turn calls the slotAddRandomTrack.


The signal is emitted here 
https://github.com/metastableBarrett/mixxx/blob/b971429_addRand/src/library/autodj/autodjprocessor.cpp#L520
and received here 
https://github.com/metastableBarrett/mixxx/blob/b971429_addRand/src/library/autodj/autodjfeature.cpp#L123
which calls the slotAddRandom() here 
https://github.com/metastableBarrett/mixxx/blob/b971429_addRand/src/library/autodj/autodjfeature.cpp#L369


My bug is that even though i'v only emitted the signal once from 
autoDjProcessor.cpp, the slotAddRandomTrack() is being called thrice 
in autoDJFeature.cpp. With the qDebug() messages I print out it seems 
that the signal is in fact being emitted thrice with the same 
arguments. I'm not sure what is happing. Any help is appreciated.


(please ignore the comments in the code)


--
DKdennis


--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net


___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel


--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Re: [Mixxx-devel] AutoDJ problems in 1.12alpha

2014-10-09 Thread Daniel Schürmann
Hi crossbuilder,

Thank you for the report.
Issues should be fixed in latest master.

Kind regards,

Daniel


Am 09.10.2014 um 20:00 schrieb crossbuilder:
 OS: opensuse 12.3 x86_64
 mixxx: 1.12 alpha mixxx-unstable-1.11.999+git20140918.1717-1.1.x86_64
 from http://packman.links2linux.org/

 1.
 Bug:
 Auto DJ always fades to the idle deck instead of the newly started deck.

 Workaround:
 reversing the crossfader in preferences.

 2. Bug (or is it a feature?)
 Wwhen I enable auto dj, it loads a track to deck 1 but doesn't start
 playing. I need to manually start deck 1, then the next track is loaded
 to deck 2.

 best regards
cb



 --
 Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
 Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
 Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
 Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
 http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
 ___
 Get Mixxx, the #1 Free MP3 DJ Mixing software Today
 http://mixxx.org


 Mixxx-devel mailing list
 Mixxx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mixxx-devel


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel


Re: [Mixxx-devel] AutoDJ Class

2012-06-21 Thread keithsalisb...@gmail.com
Looks great Scott, excited to play with it!!!

On 20 June 2012 21:34, Scott Stewart smstewar...@gmail.com wrote:

 Hi mixxx-devel,

 I am redesigning the AutoDJ as my Google Summer of Code project.  I will
 be creating an AutoDJ class that will move the AutoDJ logic out of
 DlgAutoDJ and into its own class.  I will also expand the transition
 abilities of AutoDJ to include cue points and have multiple types of
 transitions that are available.  I have created a wiki page that contains a
 lot more details and will be updated throughout the summer at
 http://www.mixxx.org/wiki/doku.php/gsoc2012_autodj_features

 Any feedback on the specifications would be appreciated.

 Thanks!
 Scott


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Get Mixxx, the #1 Free MP3 DJ Mixing software Today
 http://mixxx.org


 Mixxx-devel mailing list
 Mixxx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mixxx-devel




-- 
keithsalisb...@gmail.com
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel