Changes between Initial Version and Version 1 of coding:soundlibrarydownload

Show
Ignore:
Timestamp:
06/18/07 17:48:58 (6 years ago)
Author:
comix
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • coding:soundlibrarydownload

    v1 v1  
     1= Hydrogen coding team - Soundlibrary download feature = 
     2Right now you can download and install a Sound Library directly inside hydrogen. 
     3 
     4How does it work? 
     5Hydrogen will download the drumkit_list.xml file from an HTTP server.  
     6The downloaded file contains the name, the download url and some extra information about the Sound Library. 
     7 
     8example file: 
     9 
     10{{{ 
     11<?xml version="1.0" encoding="UTF-8"?> 
     12<!-- Drumkit list test --> 
     13<drumkit_list> 
     14 
     15        <drumkit> 
     16                <name>V-Synth VariBreaks Kit</name> 
     17                <url>http://rolandclan.info/media/samples/v-synth/V-Synth_VariBreaks.h2drumkit</url> 
     18                <info>All sounds in this kit have been created from scratch using Roland V-Synth... </info> 
     19                <author>Artemio</author> 
     20        </drumkit> 
     21 
     22        <drumkit> 
     23                <name>Roland TR-626</name> 
     24                <url>http://rolandclan.info/media/samples/tr-626/Roland_TR-626.h2drumkit</url> 
     25                <info>One of the very last drum boxes of the TR series. TR-626 featured 30 12-bit PCM samples...</info> 
     26                <author>Artemio</author> 
     27        </drumkit> 
     28</drumkit_list> 
     29}}} 
     30 
     31Notes: 
     32The drumkit name MUST be indentical to the name of the Sound Library directory!! 
     33Example: V-Synth_VariBreaks.h2drumkit must contain the V-Synth_VariBreaks directory once unpacked. 
     34Many drumkit are broken now (wrong filenames) and MUST be fixed! 
     35 
     36 
     37