Giter VIP home page Giter VIP logo

mdvj's Introduction

mdvj v0.5.1 - milkdrop vj midi controller ๐ŸŽถ

simple application that makes it easier to control milkdrop. supports any midi device or control with the mouse alone : )

preview

installation instructions

  1. make sure you have the dependencies fulfilled
    • pywin32 from here
    • pygame32 from here (only if you plan on using midi)
  2. clone this repo
  3. python ./setup.py install
  4. to run execute: mdvj

-OR-

download and extract the precompiled zip from here

usage instructions

  • first time you run mdvj, it will guide you through the process of creating screenshots for your presets
  • once that's done, select your midi device, if none just press OK and close the next window
  • press midi button then click left of the description to set it
  • in main app, click on preset to activate or click on arrows to switch preset groups

for use with resolume follow the instructions here

known bugs

milkdrop uses a funny sorting algorithm for determining order of presets so the name of a preset will not always match up with what you select. no worries, the screenshot is still correct.. if this bothers you, you can rename your presets so that milkdrop follows the same order as your file explorer.

mdvj's People

Contributors

pussinboot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

mdvj's Issues

setup.py

I started a setup.py ... pywin32 and pygame were a bit of a bugger to get installing, but I managed it.

After that I realised I don't have a midi device ... will this work with a software midi controller ?

It's best if you move all the other code into an 'mdvj' folder, then uncomment the packages part, it should install OK then.

from setuptools import setup

long_description="""
mdvj v0.0.2 - milkdrop vj midi controller
for use with novation twitch controller
"""
import sys;

is64bit = sys.maxsize > 2**32
if is64bit:
    pygame_whl="http://www.lfd.uci.edu/~gohlke/pythonlibs/z94jfosk/pygame-1.9.2a0-cp34-none-win_amd64.whl#egg=pygame-1.9"
else:
    pygame_whl="http://www.lfd.uci.edu/~gohlke/pythonlibs/z94jfosk/pygame-1.9.2a0-cp34-none-win32.whl#egg=pygame-1.9"

setup(
    name='mdvj',
    version='0.0.2',

    description='Milkdrop DJ Tool',
    long_description=long_description,
    url='https://github.com/pussinboot/mdvj',

    keywords='vj midi novation',
    #packages=['mdvj'],

    install_requires=[
        "Pillow",
        "pypiwin32",
    ],

    dependency_links=[
        pygame_whl
    ],

    entry_points = {
            'console_scripts': [
                'mdvj = mdvj:main'
            ]
        },
)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.