'+pages+'');
$('.stream > div:odd').addClass('bgr_color');
updateHeight('#history');
});
window.activateTabArea = ensure(function(tab, areas){
var parsed = false;
var parts = (areas || '').split('/');
window.fsonload = $.inArray('fs', parts) >= 0;
if(fsonload){
parts.splice(parts.indexOf('fs'), 1);
}
var replayMode = false;
if($.inArray('replay', parts)>=0){
replayMode = 'replay';
}
var noSoundMode = false;
if($.inArray('nosound', parts)>=0){
noSoundMode = 'nosound';
}
if($.inArray('ns', parts)>=0){
noSoundMode = 'ns';
}
var previewMode = null;
if($.inArray('p', parts)>=0){
previewMode = 'p';
}
if($.inArray('preview', parts)>=0){
previewMode = 'preview';
}
if($.inArray('repeat', parts)>=0){
replayMode = 'repeat';
}
if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){
replayMode = 'r';
}
if(replayMode){
parts.splice(parts.indexOf(replayMode), 1);
}
if(noSoundMode){
parts.splice(parts.indexOf(noSoundMode), 1);
}
if(previewMode){
parts.splice(parts.indexOf(previewMode), 1);
}
if(previewMode){
if(!parts.length){
parts = ['1-14', '999:59'];
}
}
var area = parts[0];
if(tab == 'history' && false){
var page = parseInt(area || '1') || 1;
$.ajax({
url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1),
dataType: 'jsonp',
success: function(response){
$ensure(function(){
renderHistory(response, page);
});
}
});
return true;
}
if(tab == 'global_history' && false){
var page = parseInt(area || '1') || 1;
globalHistory.fetchStream(page, '', function(){
updateHeight('#global_history');
});
return true;
}
if(tab == 'my_playlists' && false){
var page = parseInt(area || '1') || 1;
myPlaylists.fetchStream(page, '', function(){
updateHeight('#my_playlists');
});
return true;
}
if(tab == 'my_videos' && false){
var page = parseInt(area || '1') || 1;
myVideos.fetchStream(page, '', function(){
updateHeight('#my_videos');
});
return true;
}
if(tab == 'related_sites' && areas && matchPosition(areas)){
var seconds = parsePosition(areas);
scrollRelated(seconds);
return false;
}
if(matchPosition(area) || matchAction(area)){
parts.unshift('1');
area = parts[0];
}
if(tab == 'expand' && area && area.match(/\d+/)) {
var num = parseInt(area);
if(num < 100){
//FIX ME. Load news page with ajax here
}
else if(num > 1900){
//FIX ME. Load timeline page with ajax here
}
}
else if(tab.match(/^playlist\d+$/)){
var playerId = parseInt(tab.substring(8));
var vp = videoplayers[playerId];
window.descriptionsholder = $('.descriptionsplace');
if(!vp) return; // why? no player?
if(replayMode){
$('.replaycurrent'+playerId).attr('checked', true);
vp.setReplayCurrent(true);
}
var playQueue = [];
window.playQueue = playQueue;
var playQueuePosition = 0;
var playShouldStart = null;
var playShouldStop = null;
var parseList = function(x){
var items = x.split(/;|,/g);
var results = [];
for (i in items){
try{
var action = parseAction(vp, items[i]);
if(!action.video){
if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]);
}else{
results.push(action);
}
}catch(e){
if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]);
}
}
return results;
};
var scrollToPlaylistPosition = function(vp){
var ppos = vp.getPlaylistPosition();
var el = vp.playlistContainer.find('>li').eq(ppos);
var par = el.closest('.playlist_scrollarea');
par.scrollTop(el.offset().top-par.height()/2);
}
var updateVolumeState = function(){
if(noSoundMode){
if(noSoundMode == 'turn-on'){
clog("Sound is on, vsid="+vp.vsid);
vp.setVolumeUnMute();
noSoundMode = false;
}else{
clog("Sound is off, vsid="+vp.vsid);
vp.setVolumeMute();
noSoundMode = 'turn-on';
}
}
}
var playQueueUpdate = function(){
var playPosition = playQueue[playQueuePosition];
vp.playFromPlaylist(playPosition.video);
scrollToPlaylistPosition(vp);
playShouldStart = playPosition.start;
playShouldStop = playPosition.stop;
};
var playQueueAdvancePosition = function(){
clog("Advancing play position...");
playQueuePosition ++;
while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){
playQueuePosition ++;
}
if(playQueuePosition < playQueue.length){
playQueueUpdate();
}else if(vp.getReplayCurrent()){
playQueuePosition = 0;
playQueueUpdate();
vp.seekTo(playShouldStart);
vp.playVideo();
}else{
vp.pauseVideo();
playShouldStop = null;
playShouldStart = null;
}
};
function loadMoreVideos(playerId, vp, start, finish, callback){
var playlistInfo = playlists[playerId-1];
if(playlistInfo.loading >= finish) return;
playlistInfo.loading = finish;
$.ajax({
url: '/api/upge/cheetah-photo-search/query_videos2',
dataType: 'json',
data: {
query: playlistInfo.query,
orderby: playlistInfo.orderby,
start: start,
count: finish-start
},
success: function(response){
var pl = vp.getPlaylist().slice(0);
pl.push.apply(pl, response);
vp.setPlaylist(pl);
callback();
}
});
}
if(parts.length == 1 && matchDash(parts[0])){
var pl = vp.getActualPlaylist();
var vids = parseDash(parts[0]);
parts = [];
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': null
})
}
if(vids.length){
if(vids[vids.length-1]-1>=pl.length){
loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){
if(fsonload){
activateTabArea(tab, parts[0]+'/fs');
}else{
activateTabArea(tab, parts[0]);
}
var pls = vp.getPlaylist();
vp.playFromPlaylist(pls[pls.length-1]);
vp.playVideo();
scrollToPlaylistPosition(vp);
});
return true;
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
playShouldStart = 0;
}
}
if(previewMode){
var vids = [];
var dur = 0;
var pl = vp.getActualPlaylist();
area = parts[0];
if(parts.length == 1 && matchPosition(parts[0])){
vids = parseDash('1-'+pl.length);
dur = parsePosition(parts[0]);
parts = [];
}else
if(parts.length == 1 && matchDash(parts[0])){
vids = parseDash(parts[0]);
dur = parsePosition("999:59");
parts = [];
}
if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){
vids = parseDash(parts[0]);
dur = parsePosition(parts[1]);
parts = [];
}
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': dur
})
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}
if(parts.length>1){
for(var i = 0; i < parts.length; i++){
var sel = findMatchingVideo(vp, parts[i]);
if(sel){
playQueue.push({
'video': sel,
'start': 0,
'stop': null
})
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}else if(area){
var sel = findMatchingVideo(vp, area);
if(sel){
vp.playFromPlaylist(sel);
playShouldStart = 0;
parsed = true;
}
}
if(fsonload || replayMode){
playShouldStart = 0;
}
if(document.location.search.match('at=|queue=')){
var opts = document.location.search.replace(/^\?/,'').split(/&/g);
for(var o in opts){
if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){
playShouldStart = parsePosition(opts[o].substr(3))
}
if(opts[o].match(/^queue=/)){
playQueue = parseList(opts[o].substr(6));
if(playQueue){
playQueuePosition = 0;
playQueueUpdate();
}
}
}
}
if(matchPosition(parts[1])){
playShouldStart = parsePosition(parts[1]);
parsed = true;
}
if(matchAction(parts[1])){
var action = parseAction(vp, area+'/'+parts[1]);
playShouldStart = action.start;
playShouldStop = action.stop;
parsed = true;
}
if(playShouldStart !== null && !playQueue.length){
playQueue.push({
video: vp.getCurrentVideo(),
start: playShouldStart,
stop: playShouldStop
});
}
if(playShouldStart != null){
setInterval(function(){
if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){
playShouldStop = null;
if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){
playQueueAdvancePosition();
}else{
playShouldStart = null;
}
}
}, 500);
vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){
if(state == 'ended'){ // advance to the next video
playQueueAdvancePosition();
}
});
vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){
if(state){
updateVolumeState();
if(playShouldStart !== null){
vp.seekTo(playShouldStart);
playShouldStart = null;
}else{
playShouldStop = null; // someone started other video, stop playing from playQueue
}
}
if(fsonload) {
triggerFullscreen(playerId); fsonload = false;
}
});
}
}
else if(tab.match(/^wiki\d+$/)){
if(firstTimeActivate){
load_wiki($('#'+tab), function(){
if(area){
var areaNode = $('#'+area);
if(areaNode.length>0){
$('html, body').scrollTop(areaNode.offset().top + 10);
return true;
}
}
});
}
}
return parsed;
})
window.activateTab = ensure(function(tab, area){
window.activeArea = null;
if(tab == 'import_videos'){
if(area){
import_videos(area);
}else{
start_import();
}
return true;
}
if(tab == 'chat'){
update_chat_position($('.chat').eq(0));
window.activeArea = 'chat';
jQuery('.tabtrigger').offscreentabs('activateTab', 'chat');
return true;
}
if(tab in rev_names){
tab = rev_names[tab];
}
if(tab.match(':')){ return false; }
var sup = $('ul li a[id=#'+tab+']');
if(sup && sup.length>0){
window.activeArea = area;
sup.first().click();
if(!window.activateTabArea(tab, area)){
window.activeArea = null;
}
window.activeArea = null;
return true;
}else{
var have_tabs = $('#playlist_menu li').length;
if(tab.match(/^playlists?\d+$/)){
var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs;
if(to_add>0 && have_tabs){
add_more_videos(to_add);
return true;
}
}
}
return false;
});
window.currentPath = ensure(function(){
return window.lastHistory.replace(basepath, '').split('?')[0];
});
window.main_tab = window.main_tab || 'videos';
window.addHistory = ensure(function(path){
if(window.console && console.log) console.log("Adding to history: "+path);
if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = basepath;
} else if( path.match('^'+main_tab+'/') ){
path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/');
} else {
path = basepath + '/' + path.replace('--','/');
}
if(document.location.search){
path += document.location.search;
}
if(window.lastHistory) {
history.pushState(null, null, path);
}
else if(window.lastHistory != path){
history.replaceState(null, null, path);
window.lastHistory = path;
}
}
else{
path = path.replace('--','/');
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = '';
}
if(window.lastHistory != '/'+path){
window.location.hash = path? '/'+path : '';
window.lastHistory = '/'+path;
}
}
});
$('.tabtrigger li a').live('click', ensure(function() {
var tab = $(this).attr('id');
if(tab.substring(0,1) == '#'){
var name = tab.substring(1);
if(name in menu_names){
name = menu_names[name][0];
}
realTab = rev_names[name];
$('#'+realTab).show();
if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:''));
var path = name;
if(window.activeArea){
path = path + '/' + window.activeArea;
}
if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){
$('.multiple-playlists').show();
$('.related_playlist').show();
$('.longest_videos_playlist').show();
}else {
$('.multiple-playlists').hide();
$('.related_playlist').hide();
$('.longest_videos_playlist').hide();
}
// start the related script only when the tab is on screen showing
if (tab.match(/related_sites/)) {
if (mc) {
mc.startCredits();
}
}
window.activeTab = realTab;
addHistory(path);
setTimeout(ensure(function(){
if(tab.match(/language--/)){
$('.tabtrigger').offscreentabs('activateTab', 'language');
}
if(tab.match(/weather/)) {
$('.tabtrigger').offscreentabs('activateTab', 'weather');
loadContinent();
}
updateMenus(tab);
updateHeight();
}), 10);
}
return false;
}));
});
-->
Styrax Gum
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vol. 3 & 4
℗ 2003 Nature Sounds Entertainment
Released on: 2003-09-30
Auto-generated by YouTube.
published: 24 Aug 2015
Styrax Gum
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special Herbs, The Box Set Vol. 0 - 9
℗ 2006 Metalface Records
Released on: 2006-01-24
Main Artist: MF DOOM
Composer: Daniel Dumile
Music Publisher: Navy Yard Music (ASCAP)
Auto-generated by YouTube.
published: 15 Nov 2022
08 Styrax Gum | Metal Fingers
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
THIS CHANNEL was created mainly to show gratitude and appreciation for the music displayed here.
THIS IS THE BEGINNING of my attempt to build an aural library of sounds i vibe with (and that i think you will too). I am personally invested in and committed to the curation of some great music by some artists that I support.
Sharing, supporting the artists, and honoring their work is really what it's all about. Sharing is caring.
✌🏼peace
x Eric
My Instagram ➜ @e_rodz_selects
➜ https://www.instagram.com/e_rodz_selects
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
DISCLAIMERS + CLARIFICATIONS:
► Posted for educational purposes. I do not own the rights.
► I AM NOT THE COPY...
published: 22 Nov 2021
metal fingers (MF DOOM) - styrax gum
published: 04 Feb 2017
MF Doom-Styrax gum
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
published: 15 Feb 2009
Metal Fingers - Special Herbs:Vol. 0–9
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 Coriander
20:24 Shallots
24:24 Charnsuka
26:44 Monosodium Glutamate
Vol. 2
29:24 Red #40
33:04 Nettle Leaves
36:32 Mullein
40:15 Mugwort
43:39 All Spice
46:40 Lovage
50:38 Eucalyptus
53:22 Myrrh
Vol. 3
59:58 Agrimony
1:02:04 Arabic Gum
1:04:56 Benzoin Gum
1:07:44 Bergamot Wild
1:11:08 Calamus Root
1:14:58 Dragon's Blood Resin
1:18:36 Elder Blossoms
1:21:23 Styrax Gum
Vol. 4
1:23:55 Blood Root
1:26:56 Star Anis
1:30:24 Lemon Grass
1:34:46 Four Thieves Vinegar
1:38:21 Galangal Root
1:40:55 Spikenard
1:44:28 Cinquefoil
1:47:27 Hyssop
Vol. 5
1:51:00 Pennyroyal
1:54:13 Lavender Buds
1:57:19 White Willow Bark
2:01:44 Orange Blossoms
2:03:43 Coffin Nails
2:06:40 Kava Kava Root
2:10:47 Valerian Root
...
published: 15 Oct 2020
MF Doom - Styrax Gum
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the entire box set collection along with the correct tracklistings. If you have any questions or rhymes just leave it a comment, check out some other tracks and subscribe!
published: 12 Aug 2009
Casey Klein - "Pretend" [Utilizes "Styrax Gum" Instrumental by Metal Fingers]
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doom displays his production in the "Special Herbs" collection, which compiles numerous Doom tune instrumentals and other fine-crafted beats courtesy of the Villain, and let me say, it would be hard NOT to lay some lines down on such well-done tracks. Enjoy :)
published: 20 Apr 2017
Metal Fingers - Special Herbs The Box Set Vol. 0 - 9
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed Musli
08:32 - 10:33 Vinca Rosea
10:33 - 12:44 Arrow Root
12:44 - 14:58 Arabic Gum
14:58 - 17:12 Lavender Buds
17:12 - 19:22 Emblica Officinalis
19:22 - 21:28 Burdock Root
21:28 - 23:34 Zatar
23:34 - 25:39 Benzoin Gum
25:39 - 27:45 White Willow Bark
27:45 - 30:04 Licorice
30:04 - 31:59 Vervian
31:59 - 34:01 Fenugreek
34:01 - 36:05 Bergamot
36:05 - 38:04 Orange Blossoms
38:04 - 40:08 Sarsaparilla
40:08 - 42:17 Bergamont
42:17 - 44:22 Sumac Berries
44:22 - 46:27 Calamus
46:27 - 48:27 Coffin Nails
48:27 - 50:58 Fo-Ti
50:58 - 53:02 Podina
53:02 - 55:05 Coriander
55:05 - 57:14 Dragon's Blood Resin
57:14 - 59:10 Kava Kava Root
59:10 - 01:01:01 Camphor
01:01:01 - 01:03:17 Untitled (Meditation)
01:03:17 - 01:0...
published: 22 Dec 2021
MF DOOM - That's That but the beat is pitched down to sound like Styrax Gum
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched down version of the That's That beat
enjoy :)
published: 25 Jan 2023
2:33
Styrax Gum
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vol. 3 & 4
℗ 2003 Nature Sounds Entertainment
Released on: 2003-09-30
...
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vol. 3 & 4
℗ 2003 Nature Sounds Entertainment
Released on: 2003-09-30
Auto-generated by YouTube.
https://wn.com/Styrax_Gum
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vol. 3 & 4
℗ 2003 Nature Sounds Entertainment
Released on: 2003-09-30
Auto-generated by YouTube.
published: 24 Aug 2015
views: 170855
2:05
Styrax Gum
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special Herbs, The Box Set Vol. 0 - 9
℗ 2006 Metalface Records
Released on: 20...
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special Herbs, The Box Set Vol. 0 - 9
℗ 2006 Metalface Records
Released on: 2006-01-24
Main Artist: MF DOOM
Composer: Daniel Dumile
Music Publisher: Navy Yard Music (ASCAP)
Auto-generated by YouTube.
https://wn.com/Styrax_Gum
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special Herbs, The Box Set Vol. 0 - 9
℗ 2006 Metalface Records
Released on: 2006-01-24
Main Artist: MF DOOM
Composer: Daniel Dumile
Music Publisher: Navy Yard Music (ASCAP)
Auto-generated by YouTube.
published: 15 Nov 2022
views: 14169
2:35
08 Styrax Gum | Metal Fingers
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
THIS CHANNEL was created mainly to s...
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
THIS CHANNEL was created mainly to show gratitude and appreciation for the music displayed here.
THIS IS THE BEGINNING of my attempt to build an aural library of sounds i vibe with (and that i think you will too). I am personally invested in and committed to the curation of some great music by some artists that I support.
Sharing, supporting the artists, and honoring their work is really what it's all about. Sharing is caring.
✌🏼peace
x Eric
My Instagram ➜ @e_rodz_selects
➜ https://www.instagram.com/e_rodz_selects
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
DISCLAIMERS + CLARIFICATIONS:
► Posted for educational purposes. I do not own the rights.
► I AM NOT THE COPYRIGHTS OWNER OF ANYTHING HERE: any artists, labels, publishers and/or any other copyright owners of the music displayed here who believe that their rights are violated, please – contact me (
[email protected] ), and I will withdraw the content.
► The mission of the E Rodz Selects YouTube channel is to educate, entertain, enlighten, and inspire through music. If there is content shared on this platform that you feel infringes on your intellectual property, please email me at
[email protected] with details and it will be promptly removed.
► No infringement intended, ever
► Nobody is paying me to do what i do here – and no one has to – i upload and share all that you see here on my channel for the love and sincere appreciation of the artists & their music.
~ Eric R.
https://wn.com/08_Styrax_Gum_|_Metal_Fingers
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
THIS CHANNEL was created mainly to show gratitude and appreciation for the music displayed here.
THIS IS THE BEGINNING of my attempt to build an aural library of sounds i vibe with (and that i think you will too). I am personally invested in and committed to the curation of some great music by some artists that I support.
Sharing, supporting the artists, and honoring their work is really what it's all about. Sharing is caring.
✌🏼peace
x Eric
My Instagram ➜ @e_rodz_selects
➜ https://www.instagram.com/e_rodz_selects
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
DISCLAIMERS + CLARIFICATIONS:
► Posted for educational purposes. I do not own the rights.
► I AM NOT THE COPYRIGHTS OWNER OF ANYTHING HERE: any artists, labels, publishers and/or any other copyright owners of the music displayed here who believe that their rights are violated, please – contact me (
[email protected] ), and I will withdraw the content.
► The mission of the E Rodz Selects YouTube channel is to educate, entertain, enlighten, and inspire through music. If there is content shared on this platform that you feel infringes on your intellectual property, please email me at
[email protected] with details and it will be promptly removed.
► No infringement intended, ever
► Nobody is paying me to do what i do here – and no one has to – i upload and share all that you see here on my channel for the love and sincere appreciation of the artists & their music.
~ Eric R.
published: 22 Nov 2021
views: 106
2:34
MF Doom-Styrax gum
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
https://wn.com/Mf_Doom_Styrax_Gum
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
published: 15 Feb 2009
views: 180614
4:09:25
Metal Fingers - Special Herbs:Vol. 0–9
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 Coriander
20:24 Shallots
24:24 Charnsuka
26:44 Monosodium Glutamate
V...
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 Coriander
20:24 Shallots
24:24 Charnsuka
26:44 Monosodium Glutamate
Vol. 2
29:24 Red #40
33:04 Nettle Leaves
36:32 Mullein
40:15 Mugwort
43:39 All Spice
46:40 Lovage
50:38 Eucalyptus
53:22 Myrrh
Vol. 3
59:58 Agrimony
1:02:04 Arabic Gum
1:04:56 Benzoin Gum
1:07:44 Bergamot Wild
1:11:08 Calamus Root
1:14:58 Dragon's Blood Resin
1:18:36 Elder Blossoms
1:21:23 Styrax Gum
Vol. 4
1:23:55 Blood Root
1:26:56 Star Anis
1:30:24 Lemon Grass
1:34:46 Four Thieves Vinegar
1:38:21 Galangal Root
1:40:55 Spikenard
1:44:28 Cinquefoil
1:47:27 Hyssop
Vol. 5
1:51:00 Pennyroyal
1:54:13 Lavender Buds
1:57:19 White Willow Bark
2:01:44 Orange Blossoms
2:03:43 Coffin Nails
2:06:40 Kava Kava Root
2:10:47 Valerian Root
Vol. 6
2:15:42 Jasmine Blossoms
2:18:40 Black Snake Root
2:22:22 Horehound
2:25:30 Dragons Blood
2:29:38 Myrtle Leaf
2:34:55 Patchouly Leaves
Vol. 7
2:38:40 Safed Musli
2:41:55 Emblica Officinalis
2:46:46 Licorice
2:49:50 Sarsaparilla
2:53:21 Fo Ti
2:56:11 Camphor
Vol. 8
2:58:01 High John
3:02:33 Mandrake
3:05:08 Devil's Shoestring
3:09:33 Wormwood
3:12:54 Cedar
3:16:27 Buckeyes
3:19:32 Chrysanthemum Flowers
Vol. 9
3:23:27 Vinca Rosea
3:26:27 Burdock Root
3:30:00 Vervain
3:33:00 Bergamot
3:36:33 Podina
3:38:40 Untitled(Meditation)
Vol. 0
3:42:36 Coltsfoot Leaf
3:46:18 Orris Root Powder
3:49:54 Passion Flower
3:54:00 Yellow Dock
3:58:22 Datura Stramonium
4:01:26 Coca Leaf
4:05:16 Peach Extract
https://wn.com/Metal_Fingers_Special_Herbs_Vol._0–9
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 Coriander
20:24 Shallots
24:24 Charnsuka
26:44 Monosodium Glutamate
Vol. 2
29:24 Red #40
33:04 Nettle Leaves
36:32 Mullein
40:15 Mugwort
43:39 All Spice
46:40 Lovage
50:38 Eucalyptus
53:22 Myrrh
Vol. 3
59:58 Agrimony
1:02:04 Arabic Gum
1:04:56 Benzoin Gum
1:07:44 Bergamot Wild
1:11:08 Calamus Root
1:14:58 Dragon's Blood Resin
1:18:36 Elder Blossoms
1:21:23 Styrax Gum
Vol. 4
1:23:55 Blood Root
1:26:56 Star Anis
1:30:24 Lemon Grass
1:34:46 Four Thieves Vinegar
1:38:21 Galangal Root
1:40:55 Spikenard
1:44:28 Cinquefoil
1:47:27 Hyssop
Vol. 5
1:51:00 Pennyroyal
1:54:13 Lavender Buds
1:57:19 White Willow Bark
2:01:44 Orange Blossoms
2:03:43 Coffin Nails
2:06:40 Kava Kava Root
2:10:47 Valerian Root
Vol. 6
2:15:42 Jasmine Blossoms
2:18:40 Black Snake Root
2:22:22 Horehound
2:25:30 Dragons Blood
2:29:38 Myrtle Leaf
2:34:55 Patchouly Leaves
Vol. 7
2:38:40 Safed Musli
2:41:55 Emblica Officinalis
2:46:46 Licorice
2:49:50 Sarsaparilla
2:53:21 Fo Ti
2:56:11 Camphor
Vol. 8
2:58:01 High John
3:02:33 Mandrake
3:05:08 Devil's Shoestring
3:09:33 Wormwood
3:12:54 Cedar
3:16:27 Buckeyes
3:19:32 Chrysanthemum Flowers
Vol. 9
3:23:27 Vinca Rosea
3:26:27 Burdock Root
3:30:00 Vervain
3:33:00 Bergamot
3:36:33 Podina
3:38:40 Untitled(Meditation)
Vol. 0
3:42:36 Coltsfoot Leaf
3:46:18 Orris Root Powder
3:49:54 Passion Flower
3:54:00 Yellow Dock
3:58:22 Datura Stramonium
4:01:26 Coca Leaf
4:05:16 Peach Extract
published: 15 Oct 2020
views: 101432
2:04
MF Doom - Styrax Gum
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the entire box set collection along with the correct tracklistings. If you hav...
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the entire box set collection along with the correct tracklistings. If you have any questions or rhymes just leave it a comment, check out some other tracks and subscribe!
https://wn.com/Mf_Doom_Styrax_Gum
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the entire box set collection along with the correct tracklistings. If you have any questions or rhymes just leave it a comment, check out some other tracks and subscribe!
published: 12 Aug 2009
views: 166491
2:21
Casey Klein - "Pretend" [Utilizes "Styrax Gum" Instrumental by Metal Fingers]
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doom displays his production in the "Special Herbs" collection, which com...
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doom displays his production in the "Special Herbs" collection, which compiles numerous Doom tune instrumentals and other fine-crafted beats courtesy of the Villain, and let me say, it would be hard NOT to lay some lines down on such well-done tracks. Enjoy :)
https://wn.com/Casey_Klein_Pretend_Utilizes_Styrax_Gum_Instrumental_By_Metal_Fingers
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doom displays his production in the "Special Herbs" collection, which compiles numerous Doom tune instrumentals and other fine-crafted beats courtesy of the Villain, and let me say, it would be hard NOT to lay some lines down on such well-done tracks. Enjoy :)
published: 20 Apr 2017
views: 116
3:13:04
Metal Fingers - Special Herbs The Box Set Vol. 0 - 9
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed Musli
08:32 - 10:33 Vinca Rosea
10:33 - 12:44 Arrow Root
12:44 - 14:58...
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed Musli
08:32 - 10:33 Vinca Rosea
10:33 - 12:44 Arrow Root
12:44 - 14:58 Arabic Gum
14:58 - 17:12 Lavender Buds
17:12 - 19:22 Emblica Officinalis
19:22 - 21:28 Burdock Root
21:28 - 23:34 Zatar
23:34 - 25:39 Benzoin Gum
25:39 - 27:45 White Willow Bark
27:45 - 30:04 Licorice
30:04 - 31:59 Vervian
31:59 - 34:01 Fenugreek
34:01 - 36:05 Bergamot
36:05 - 38:04 Orange Blossoms
38:04 - 40:08 Sarsaparilla
40:08 - 42:17 Bergamont
42:17 - 44:22 Sumac Berries
44:22 - 46:27 Calamus
46:27 - 48:27 Coffin Nails
48:27 - 50:58 Fo-Ti
50:58 - 53:02 Podina
53:02 - 55:05 Coriander
55:05 - 57:14 Dragon's Blood Resin
57:14 - 59:10 Kava Kava Root
59:10 - 01:01:01 Camphor
01:01:01 - 01:03:17 Untitled (Meditation)
01:03:17 - 01:05:21 Shallots
01:05:21 - 01:07:10 Elder Blossoms
01:07:10 - 01:09:25 Valerian Root
01:09:25 - 01:11:48 High John
01:11:48 - 01:13:56 Coltsfoot Leaf
01:13:56 - 01:16:18 Charnsuka
01:16:18 - 01:18:23 Styrax Gum
01:18:23 - 01:20:30 Jasmine Blossoms
01:20:30 - 01:22:48 Mandrake
01:22:48 - 01:24:49 Orris Root Powder
01:24:49 - 01:27:02 Monosodium Glutamate
01:27:02 - 01:29:14 Blood Root
01:29:14 - 01:31:27 Black Snake Root
01:31:27 - 01:33:42 Devil's Shoestring
01:33:42 - 01:36:06 Passion Flower
01:36:06 - 01:38:12 Red #40
01:38:12 - 01:40:12 Star Anis
01:40:12 - 01:42:26 Horehound
01:42:26 - 01:44:15 Wormwood
01:44:15 - 01:46:34 Yellow Dock
01:46:34 - 01:48:44 Nettle Leaves
01:48:44 - 01:51:19 Lemon Grass
01:51:19 - 01:53:29 Dragon's Blood
01:53:29 - 01:55:37 Datura Stramonium
01:55:37 - 01:57:50 Cedar
01:57:50 - 01:59:52 Mullein
01:59:52 - 02:01:58 Four Thieves Vinegar
02:01:58 - 02:04:03 Myrtle Leaf
02:04:03 - 02:06:18 Buckeyes
02:06:18 - 02:08:23 Coca Leaf
02:08:23 - 02:10:29 Mugwort
02:10:29 - 02:12:34 Galangal Root
02:12:34 - 02:14:39 All Spice
02:14:39 - 02:16:26 Spikenard
02:16:26 - 02:18:39 Lovage
02:18:39 - 02:20:50 Cinquefoil
02:20:50 - 02:23:00 Eucalyptus
02:23:00 - 02:25:11 Hyssop
02:25:11 - 02:27:15 Myrrh
02:27:15 - 02:29:26 Patchouly Leaves
02:29:26 - 02:31:33 Chrysanthemum Flowers
02:31:33 - 02:33:51 Peach Extract
02:33:51 - 02:37:27 Who Me?
02:37:27 - 02:42:18 Plumskinzz
02:42:18 - 02:45:44 Humrush
02:45:44 - 02:49:16 Garbage Day #3
02:49:16 - 02:52:12 Constipated Monkey
02:52:12 - 02:54:47 Contact Blitt
02:54:47 - 02:58:21 What A Niggy Know?
02:58:21 - 03:03:34 Get-U-Now
03:03:34 - 03:08:13 Smokin' That Shit!
03:08:13 - 03:13:03 It Sounded Like a Roc!
https://wn.com/Metal_Fingers_Special_Herbs_The_Box_Set_Vol._0_9
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed Musli
08:32 - 10:33 Vinca Rosea
10:33 - 12:44 Arrow Root
12:44 - 14:58 Arabic Gum
14:58 - 17:12 Lavender Buds
17:12 - 19:22 Emblica Officinalis
19:22 - 21:28 Burdock Root
21:28 - 23:34 Zatar
23:34 - 25:39 Benzoin Gum
25:39 - 27:45 White Willow Bark
27:45 - 30:04 Licorice
30:04 - 31:59 Vervian
31:59 - 34:01 Fenugreek
34:01 - 36:05 Bergamot
36:05 - 38:04 Orange Blossoms
38:04 - 40:08 Sarsaparilla
40:08 - 42:17 Bergamont
42:17 - 44:22 Sumac Berries
44:22 - 46:27 Calamus
46:27 - 48:27 Coffin Nails
48:27 - 50:58 Fo-Ti
50:58 - 53:02 Podina
53:02 - 55:05 Coriander
55:05 - 57:14 Dragon's Blood Resin
57:14 - 59:10 Kava Kava Root
59:10 - 01:01:01 Camphor
01:01:01 - 01:03:17 Untitled (Meditation)
01:03:17 - 01:05:21 Shallots
01:05:21 - 01:07:10 Elder Blossoms
01:07:10 - 01:09:25 Valerian Root
01:09:25 - 01:11:48 High John
01:11:48 - 01:13:56 Coltsfoot Leaf
01:13:56 - 01:16:18 Charnsuka
01:16:18 - 01:18:23 Styrax Gum
01:18:23 - 01:20:30 Jasmine Blossoms
01:20:30 - 01:22:48 Mandrake
01:22:48 - 01:24:49 Orris Root Powder
01:24:49 - 01:27:02 Monosodium Glutamate
01:27:02 - 01:29:14 Blood Root
01:29:14 - 01:31:27 Black Snake Root
01:31:27 - 01:33:42 Devil's Shoestring
01:33:42 - 01:36:06 Passion Flower
01:36:06 - 01:38:12 Red #40
01:38:12 - 01:40:12 Star Anis
01:40:12 - 01:42:26 Horehound
01:42:26 - 01:44:15 Wormwood
01:44:15 - 01:46:34 Yellow Dock
01:46:34 - 01:48:44 Nettle Leaves
01:48:44 - 01:51:19 Lemon Grass
01:51:19 - 01:53:29 Dragon's Blood
01:53:29 - 01:55:37 Datura Stramonium
01:55:37 - 01:57:50 Cedar
01:57:50 - 01:59:52 Mullein
01:59:52 - 02:01:58 Four Thieves Vinegar
02:01:58 - 02:04:03 Myrtle Leaf
02:04:03 - 02:06:18 Buckeyes
02:06:18 - 02:08:23 Coca Leaf
02:08:23 - 02:10:29 Mugwort
02:10:29 - 02:12:34 Galangal Root
02:12:34 - 02:14:39 All Spice
02:14:39 - 02:16:26 Spikenard
02:16:26 - 02:18:39 Lovage
02:18:39 - 02:20:50 Cinquefoil
02:20:50 - 02:23:00 Eucalyptus
02:23:00 - 02:25:11 Hyssop
02:25:11 - 02:27:15 Myrrh
02:27:15 - 02:29:26 Patchouly Leaves
02:29:26 - 02:31:33 Chrysanthemum Flowers
02:31:33 - 02:33:51 Peach Extract
02:33:51 - 02:37:27 Who Me?
02:37:27 - 02:42:18 Plumskinzz
02:42:18 - 02:45:44 Humrush
02:45:44 - 02:49:16 Garbage Day #3
02:49:16 - 02:52:12 Constipated Monkey
02:52:12 - 02:54:47 Contact Blitt
02:54:47 - 02:58:21 What A Niggy Know?
02:58:21 - 03:03:34 Get-U-Now
03:03:34 - 03:08:13 Smokin' That Shit!
03:08:13 - 03:13:03 It Sounded Like a Roc!
published: 22 Dec 2021
views: 16973
2:15
MF DOOM - That's That but the beat is pitched down to sound like Styrax Gum
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched down version of the That's That beat
enjoy :)
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched down version of the That's That beat
enjoy :)
https://wn.com/Mf_Doom_That's_That_But_The_Beat_Is_Pitched_Down_To_Sound_Like_Styrax_Gum
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched down version of the That's That beat
enjoy :)
published: 25 Jan 2023
views: 83
2:33
Styrax Gum
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vo...
Play in Full Screen
Styrax Gum
Styrax Gum
Provided to YouTube by Nature Sounds Entertainment
Styrax Gum · MF DOOM
Special Herbs Vol. 3 & 4
℗ 2003 Nature Sounds Entertainment
Released on: 2003-09-30
Auto-generated by YouTube.
2:05
Styrax Gum
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special He...
Play in Full Screen
Styrax Gum
Styrax Gum
Provided to YouTube by BWSCD Inc
Styrax Gum · MF DOOM
Metal Fingers Presents: Special Herbs, The Box Set Vol. 0 - 9
℗ 2006 Metalface Records
Released on: 2006-01-24
Main Artist: MF DOOM
Composer: Daniel Dumile
Music Publisher: Navy Yard Music (ASCAP)
Auto-generated by YouTube.
2:35
08 Styrax Gum | Metal Fingers
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛...
Play in Full Screen
08 Styrax Gum | Metal Fingers
08 Styrax Gum | Metal Fingers
🎧 Album – Special Herbs Vol. 3
📅 released 2002
Copyright © Female Fun Records (c).
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
THIS CHANNEL was created mainly to show gratitude and appreciation for the music displayed here.
THIS IS THE BEGINNING of my attempt to build an aural library of sounds i vibe with (and that i think you will too). I am personally invested in and committed to the curation of some great music by some artists that I support.
Sharing, supporting the artists, and honoring their work is really what it's all about. Sharing is caring.
✌🏼peace
x Eric
My Instagram ➜ @e_rodz_selects
➜ https://www.instagram.com/e_rodz_selects
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️
DISCLAIMERS + CLARIFICATIONS:
► Posted for educational purposes. I do not own the rights.
► I AM NOT THE COPYRIGHTS OWNER OF ANYTHING HERE: any artists, labels, publishers and/or any other copyright owners of the music displayed here who believe that their rights are violated, please – contact me (
[email protected] ), and I will withdraw the content.
► The mission of the E Rodz Selects YouTube channel is to educate, entertain, enlighten, and inspire through music. If there is content shared on this platform that you feel infringes on your intellectual property, please email me at
[email protected] with details and it will be promptly removed.
► No infringement intended, ever
► Nobody is paying me to do what i do here – and no one has to – i upload and share all that you see here on my channel for the love and sincere appreciation of the artists & their music.
~ Eric R.
2:33
metal fingers (MF DOOM) - styrax gum
Play in Full Screen
metal fingers (MF DOOM) - styrax gum
metal fingers (MF DOOM) - styrax gum
2:34
MF Doom-Styrax gum
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
Play in Full Screen
MF Doom-Styrax gum
MF Doom-Styrax gum
From Special Herbs volume 4
Sample: Galt Macdermot-Princess Gika
4:09:25
Metal Fingers - Special Herbs:Vol. 0–9
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 ...
Play in Full Screen
Metal Fingers - Special Herbs:Vol. 0–9
Metal Fingers - Special Herbs:Vol. 0–9
Vol. 1
0:00 Saffron
3:24 Arrow Root
7:09 Zatar
10:24 Fenugreek
13:46 Sumac Berries
17:20 Coriander
20:24 Shallots
24:24 Charnsuka
26:44 Monosodium Glutamate
Vol. 2
29:24 Red #40
33:04 Nettle Leaves
36:32 Mullein
40:15 Mugwort
43:39 All Spice
46:40 Lovage
50:38 Eucalyptus
53:22 Myrrh
Vol. 3
59:58 Agrimony
1:02:04 Arabic Gum
1:04:56 Benzoin Gum
1:07:44 Bergamot Wild
1:11:08 Calamus Root
1:14:58 Dragon's Blood Resin
1:18:36 Elder Blossoms
1:21:23 Styrax Gum
Vol. 4
1:23:55 Blood Root
1:26:56 Star Anis
1:30:24 Lemon Grass
1:34:46 Four Thieves Vinegar
1:38:21 Galangal Root
1:40:55 Spikenard
1:44:28 Cinquefoil
1:47:27 Hyssop
Vol. 5
1:51:00 Pennyroyal
1:54:13 Lavender Buds
1:57:19 White Willow Bark
2:01:44 Orange Blossoms
2:03:43 Coffin Nails
2:06:40 Kava Kava Root
2:10:47 Valerian Root
Vol. 6
2:15:42 Jasmine Blossoms
2:18:40 Black Snake Root
2:22:22 Horehound
2:25:30 Dragons Blood
2:29:38 Myrtle Leaf
2:34:55 Patchouly Leaves
Vol. 7
2:38:40 Safed Musli
2:41:55 Emblica Officinalis
2:46:46 Licorice
2:49:50 Sarsaparilla
2:53:21 Fo Ti
2:56:11 Camphor
Vol. 8
2:58:01 High John
3:02:33 Mandrake
3:05:08 Devil's Shoestring
3:09:33 Wormwood
3:12:54 Cedar
3:16:27 Buckeyes
3:19:32 Chrysanthemum Flowers
Vol. 9
3:23:27 Vinca Rosea
3:26:27 Burdock Root
3:30:00 Vervain
3:33:00 Bergamot
3:36:33 Podina
3:38:40 Untitled(Meditation)
Vol. 0
3:42:36 Coltsfoot Leaf
3:46:18 Orris Root Powder
3:49:54 Passion Flower
3:54:00 Yellow Dock
3:58:22 Datura Stramonium
4:01:26 Coca Leaf
4:05:16 Peach Extract
2:04
MF Doom - Styrax Gum
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the enti...
Play in Full Screen
MF Doom - Styrax Gum
MF Doom - Styrax Gum
Track 37 of Special Herbs - The Box Set Collection.
: : : : : : I have the entire box set collection along with the correct tracklistings. If you have any questions or rhymes just leave it a comment, check out some other tracks and subscribe!
2:21
Casey Klein - "Pretend" [Utilizes "Styrax Gum" Instrumental by Metal Fingers]
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doo...
Play in Full Screen
Casey Klein - "Pretend" [Utilizes "Styrax Gum" Instrumental by Metal Fingers]
Casey Klein - "Pretend" [Utilizes "Styrax Gum" Instrumental by Metal Fingers]
I spit over an MF Doom jam, theres are the results; through the moniker Metal Fingers, Doom displays his production in the "Special Herbs" collection, which compiles numerous Doom tune instrumentals and other fine-crafted beats courtesy of the Villain, and let me say, it would be hard NOT to lay some lines down on such well-done tracks. Enjoy :)
3:13:04
Metal Fingers - Special Herbs The Box Set Vol. 0 - 9
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed ...
Play in Full Screen
Metal Fingers - Special Herbs The Box Set Vol. 0 - 9
Metal Fingers - Special Herbs The Box Set Vol. 0 - 9
00:00 - 02:04 Saffron
02:04 - 04:11 Agrimony
04:11 - 06:22 Pennyroyal
06:22 - 08:32 Safed Musli
08:32 - 10:33 Vinca Rosea
10:33 - 12:44 Arrow Root
12:44 - 14:58 Arabic Gum
14:58 - 17:12 Lavender Buds
17:12 - 19:22 Emblica Officinalis
19:22 - 21:28 Burdock Root
21:28 - 23:34 Zatar
23:34 - 25:39 Benzoin Gum
25:39 - 27:45 White Willow Bark
27:45 - 30:04 Licorice
30:04 - 31:59 Vervian
31:59 - 34:01 Fenugreek
34:01 - 36:05 Bergamot
36:05 - 38:04 Orange Blossoms
38:04 - 40:08 Sarsaparilla
40:08 - 42:17 Bergamont
42:17 - 44:22 Sumac Berries
44:22 - 46:27 Calamus
46:27 - 48:27 Coffin Nails
48:27 - 50:58 Fo-Ti
50:58 - 53:02 Podina
53:02 - 55:05 Coriander
55:05 - 57:14 Dragon's Blood Resin
57:14 - 59:10 Kava Kava Root
59:10 - 01:01:01 Camphor
01:01:01 - 01:03:17 Untitled (Meditation)
01:03:17 - 01:05:21 Shallots
01:05:21 - 01:07:10 Elder Blossoms
01:07:10 - 01:09:25 Valerian Root
01:09:25 - 01:11:48 High John
01:11:48 - 01:13:56 Coltsfoot Leaf
01:13:56 - 01:16:18 Charnsuka
01:16:18 - 01:18:23 Styrax Gum
01:18:23 - 01:20:30 Jasmine Blossoms
01:20:30 - 01:22:48 Mandrake
01:22:48 - 01:24:49 Orris Root Powder
01:24:49 - 01:27:02 Monosodium Glutamate
01:27:02 - 01:29:14 Blood Root
01:29:14 - 01:31:27 Black Snake Root
01:31:27 - 01:33:42 Devil's Shoestring
01:33:42 - 01:36:06 Passion Flower
01:36:06 - 01:38:12 Red #40
01:38:12 - 01:40:12 Star Anis
01:40:12 - 01:42:26 Horehound
01:42:26 - 01:44:15 Wormwood
01:44:15 - 01:46:34 Yellow Dock
01:46:34 - 01:48:44 Nettle Leaves
01:48:44 - 01:51:19 Lemon Grass
01:51:19 - 01:53:29 Dragon's Blood
01:53:29 - 01:55:37 Datura Stramonium
01:55:37 - 01:57:50 Cedar
01:57:50 - 01:59:52 Mullein
01:59:52 - 02:01:58 Four Thieves Vinegar
02:01:58 - 02:04:03 Myrtle Leaf
02:04:03 - 02:06:18 Buckeyes
02:06:18 - 02:08:23 Coca Leaf
02:08:23 - 02:10:29 Mugwort
02:10:29 - 02:12:34 Galangal Root
02:12:34 - 02:14:39 All Spice
02:14:39 - 02:16:26 Spikenard
02:16:26 - 02:18:39 Lovage
02:18:39 - 02:20:50 Cinquefoil
02:20:50 - 02:23:00 Eucalyptus
02:23:00 - 02:25:11 Hyssop
02:25:11 - 02:27:15 Myrrh
02:27:15 - 02:29:26 Patchouly Leaves
02:29:26 - 02:31:33 Chrysanthemum Flowers
02:31:33 - 02:33:51 Peach Extract
02:33:51 - 02:37:27 Who Me?
02:37:27 - 02:42:18 Plumskinzz
02:42:18 - 02:45:44 Humrush
02:45:44 - 02:49:16 Garbage Day #3
02:49:16 - 02:52:12 Constipated Monkey
02:52:12 - 02:54:47 Contact Blitt
02:54:47 - 02:58:21 What A Niggy Know?
02:58:21 - 03:03:34 Get-U-Now
03:03:34 - 03:08:13 Smokin' That Shit!
03:08:13 - 03:13:03 It Sounded Like a Roc!
2:15
MF DOOM - That's That but the beat is pitched down to sound like Styrax Gum
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched dow...
Play in Full Screen
MF DOOM - That's That but the beat is pitched down to sound like Styrax Gum
MF DOOM - That's That but the beat is pitched down to sound like Styrax Gum
Styrax Gum = track off of Metal Fingers - Special Herbs Volume 3 & 4 that is a pitched down version of the That's That beat
enjoy :)
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->