| | 1 | = Hydrogen coding team - Soundlibrary download feature = |
| | 2 | Right now you can download and install a Sound Library directly inside hydrogen. |
| | 3 | |
| | 4 | How does it work? |
| | 5 | Hydrogen will download the drumkit_list.xml file from an HTTP server. |
| | 6 | The downloaded file contains the name, the download url and some extra information about the Sound Library. |
| | 7 | |
| | 8 | example 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 | |
| | 31 | Notes: |
| | 32 | The drumkit name MUST be indentical to the name of the Sound Library directory!! |
| | 33 | Example: V-Synth_VariBreaks.h2drumkit must contain the V-Synth_VariBreaks directory once unpacked. |
| | 34 | Many drumkit are broken now (wrong filenames) and MUST be fixed! |
| | 35 | |
| | 36 | |
| | 37 | |