Korg Forums Forum Index Korg Forums
A forum for Korg product users and musicians around the world.
Moderated Independently.
Owned by Irish Acts Recording Studio & hosted by KORG USA
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Creating Styles using MIDI Files
Goto page Previous  1, 2
 
Post new topic   Reply to topic    Korg Forums Forum Index -> Korg Pa600/Pa300
View previous topic :: View next topic  
Author Message
Nemik
Approved Merchant
Approved Merchant


Joined: 27 Jan 2014
Posts: 1723
Location: Hilton Head Island, SC

PostPosted: Sat Nov 11, 2017 2:48 am    Post subject: Reply with quote

sridharar wrote:


CODE button would have ring a bell if I was actually attaching Computer Program/Code.

Sri.


In code quote ypu can put anything you want and won't filter any .
Won't to any harm to post, even if you do HTML or JavaScript. Wink

here you got example:
Code:
# Python Program to find the area of triangle

a = 5
b = 6
c = 7

# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))

# calculate the semi-perimeter
s = (a + b + c) / 2

# calculate the area
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('The area of the triangle is %0.2f' %area)

or JavaScript:
Code:
   <html>
   <head>
   <title>Multiplication Table</title>
   <script>
   var rows = prompt("How many rows for your multiplication table?");
   var cols = prompt("How many columns for your multiplication table?");
   if(rows == "" || rows == null)
   rows = 10;
   if(cols== "" || cols== null)
   cols = 10;
   createTable(rows, cols);
   function createTable(rows, cols)
   {
   var j=1;
   var output = "<table border='1' width='500' cellspacing='0' cellpadding='5'>";
   for(i=1;i<=rows;i++)
   {
     output = output + "<tr>";
     while(j<=cols)
     {
        output = output + "<td>" + i*j + "</td>";
        j = j+1;
     }
     output = output + "</tr>";
     j = 1;
   }
   output = output + "</table>";
   document.write(output);
   }
   </script>
   </head>
   <body>
   </body>
   </html>

_________________
Nemik
Korg Kronos2-61, Korg Pa600, Novation UltraNova, Akai Professional MPK49, Akai Professional MPK225 , Alesis QX-49, APC25 Keys, Launchpad MK2, Korg nanoPad2
MOTU Midi Express XT, FCB1010 with UnO, Behringer X2222 USB, TASCAM Model 24 Mixer, Presonus AudioBox96, M-Track Plus
Fl Studio 12, Ableton Live 10 Suite.
Performers Heaven
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sridharar
Full Member


Joined: 29 Apr 2013
Posts: 149
Location: Nashua, NH

PostPosted: Sat Nov 11, 2017 3:19 am    Post subject: Reply with quote

Nemik

I think I know all the constraints of PA600 and working only within those confines.

As I mentioned in the earlier posts, I am not trying to interface with PA600 in real time via commands over MIDI channel (including Sysex). I am trying to creating MIDI files on my Laptop that can be imported into PA600 for creating Styles. This is definitely possible. That is all I am doing and nothing more.

My questions (about Sysex, CC commands) have been only in this context.

There are also plenty of tradeoff and reasons to do things on a Laptop - rather than on board on PA600. These are subjective and probably well founded, especially after one understands the pros and cons of both.

br Sri.
P.S As a friend, I would encourage you, and I am sure everyone in this forum would as well, if you always extended best courtesies to everyone - and avoid making statements that may be perceived as condescending and/or not respectful.

If you send me a private message, I will be happy to elaborate.
Back to top
View user's profile Send private message Visit poster's website
Nemik
Approved Merchant
Approved Merchant


Joined: 27 Jan 2014
Posts: 1723
Location: Hilton Head Island, SC

PostPosted: Sat Nov 11, 2017 3:41 am    Post subject: Reply with quote

@sridharar

Just ask here anything you wanna know, we here to help.
I will answer much I can to help you find best way to make Styles.
_________________
Nemik
Korg Kronos2-61, Korg Pa600, Novation UltraNova, Akai Professional MPK49, Akai Professional MPK225 , Alesis QX-49, APC25 Keys, Launchpad MK2, Korg nanoPad2
MOTU Midi Express XT, FCB1010 with UnO, Behringer X2222 USB, TASCAM Model 24 Mixer, Presonus AudioBox96, M-Track Plus
Fl Studio 12, Ableton Live 10 Suite.
Performers Heaven
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sridharar
Full Member


Joined: 29 Apr 2013
Posts: 149
Location: Nashua, NH

PostPosted: Sat Nov 11, 2017 3:55 am    Post subject: Reply with quote

Nemik

Appreciate your note. You have already helped me in more ways than you know in this forum. Look forward to drawing more of yours as well as the collective wisdom on this forum.

br Sri.
Back to top
View user's profile Send private message Visit poster's website
Sam CA
Platinum Member


Joined: 02 May 2008
Posts: 3990
Location: Los Angeles

PostPosted: Sat Nov 11, 2017 5:23 am    Post subject: Reply with quote

Sri,

Unfortunately I know nothing about software programming so I can't be of any help in that area. Obviously you can just use a DAW to create the midi file and all that jazz. So ultimately your goal is to write an editor software that could prepare the .STY file?
_________________
Sam



Back to top
View user's profile Send private message AIM Address Yahoo Messenger
amit
Approved Merchant
Approved Merchant


Joined: 13 Jul 2015
Posts: 825
Location: New Delhi, India

PostPosted: Sat Nov 11, 2017 8:06 am    Post subject: Reply with quote

Look into My Signature for Yamaha to Korg Style Converter and Converted styles and look/search in the forums where I describe some information.
There might also be a PA PAL Software I wrote that lets you do few things.

I havent used my PA600 & styles etc for a while so a bit rusty about it.

but most cc/sysex commands are listed in the documentation

Here are a few links:
http://www.korgforums.com/forum/phpBB2/viewtopic.php?t=99208&highlight=pal

http://www.korgforums.com/forum/phpBB2/viewtopic.php?t=98824&highlight=y2kmidi


Look into the generated midi files to get an idea of the markers etc.

Unfortunately there is no tool/command set to automate the process on the PA600 and the work has to be done manually.
_________________
DX7-MOD-7 Patches | Korg Related Content
iPad Pro 12.9,MBP
Korg (Kronos 2, PA600,WavestateVolcaFM), Moog Subsequent 37, Waldorf Pulse 2, ,Novation (Peak, Circuit), Roland GR55, Roli Rise 49, Boog Model D Novation Sl 49, Launchpad Pro, Ableton Push 2 + Suite,Yamaha DTX Multi 12, Akai EWI USB, Nano key Studio, Arturia(BeatStep Pro,DrumBrute,Keystep),StryMon(Big Sky,Timeline), Mooer Ocean Machine, Zoom MS-70CDR,MXR Carbon Copy Deluxe, MicroKontrol,KLC, Korg DS-1H, Korg EXP-2,Roland DP-10, Nanopad 2, TEcontrol BBC2, Soundcraft Signatrure 22 MTK, Yamaha MG10XU,UltraG DI,Eris E5 .. List
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Korg Forums Forum Index -> Korg Pa600/Pa300 All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group