Skip to content

Commit 7a4ae77

Browse files
committed
Initial commit
0 parents  commit 7a4ae77

File tree

126 files changed

+7468
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+7468
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.swp
2+
.jekyll-metadata
3+
Makefile
4+
_site/
5+
Gemfile.lock

3dsoundworkshop.md

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
---
2+
layout: page
3+
---
4+
5+
![3D Sound Workshop poster](/assets/img/poster3dsoundworkshop.jpg)
6+
7+
# Composing and performing with 3D sound
8+
9+
## Workshop Introduction
10+
11+
The 5 day workshop contains a gentle introduction, hands-on exercises and gives time for individuals or groups to compose and create pieces of music/sound art with a 32 channel 3 D Sound System. 3D audio is a technology for reproduction of audio in space, adding the vertical dimension and higher resolution to usual surround sound. The natural dynamics of sound in space can be imitated and immersive life-like listening experiences can be created.
12+
13+
The workshop is open to artists interested in performance, composition, installation and the technical aspects of immersive and spatial audio. The projects will be performed at the final public concert on 29 of October (location TBA). The workshop is ideal for musicians, DJs, composers, theatre directors, producers, artists, audio engineers and programmers. No previous knowledge in 3D audio required.
14+
15+
## Workshop Logistics
16+
17+
Location:
18+
Mallya Aditi International School,
19+
RWF West Colony,
20+
Yelahanka New Town,
21+
Bengaluru,
22+
Karnataka, 560106
23+
24+
Getting here bus routes:
25+
G9 (from Shivajinagar)
26+
You can take the Srishti bus from Mekhri Circle at 8:15 a.m.
27+
28+
*Day 1 23rd October, 2017 - Introduction to 3D audio*
29+
30+
10:00 A.M.: Introductions
31+
32+
10:30 A.M.
33+
Mr. Umashankar Mantravadi
34+
- Ambisonic recording/capturing space with sound.
35+
- Instroduction to Ambisonics
36+
- History of sound+space
37+
- Recording space
38+
- Listening to Brahma
39+
40+
1:00 P.M.: Lunch
41+
42+
2:00 P.M.: Recording Session
43+
44+
*Day 2 24th October, 2017*
45+
46+
Felix
47+
- Training in the relevant technical aspects of 3D audio speaker setups, such as 3D audio rendering systems, object based / channel based audio, signal flow and signal transformation
48+
49+
- Overview and D.I.Y Construction of a 3D sound system by Felix Deufel
50+
51+
- project pitch of each group / individual
52+
53+
- planning of the individual production timeslots for each project
54+
55+
- hands-on exercises that will familiarize the participants with working with sound in space
56+
57+
- Wiring an Amplifier to the Sound System.
58+
59+
- listening to examples.
60+
61+
- Ideas for Work
62+
63+
*Day 3 25th October, 2017*
64+
65+
- introduction MAX/MSP and Pure Data, remote control 3D audio by Yashas
66+
67+
- OSC in Pure Data and MAX/MSP
68+
69+
- individual and intense production timeslots for each project, supervised and assisted by the hosts
70+
71+
72+
*Day 4 26th October, 2017*
73+
74+
- individual and intense production timeslots for each project, supervised and assisted by the hosts
75+
76+
77+
*Day 5 27th October, 2017*
78+
79+
- individual and intense production timeslots for each project, supervised and assisted by the hosts
80+
81+
*Day 6 28/29th October, 2017*
82+
83+
- Final rehearsal and final event – public presentation of the projects
84+
85+
## Participants
86+
87+
- Suresh Kumar
88+
- Sudhir Tatavarti
89+
- Nikhil Nagaraj
90+
- Alex John
91+
- Daniel Miller
92+
93+
## Software
94+
95+
- [Reaper Digital Audio Workstation](https://www.reaper.fm/)
96+
- ambiX v0.2.7 - Ambisonic plug-in suite by [Matthias Kronlachner](http://www.matthiaskronlachner.com/?p=2015)
97+
- Max/MSP [Pure Data](https://puredata.info/downloads)
98+
99+
## References and Books
100+
101+
- What's wrong with Quadrophonics?,Gerzon M
102+
- ‘Surround-sound psychoacoustics’,Gerzon M
103+
104+
## Acknowledgements and Support
105+
106+
- __*Srishti Institute of Art, Design and Technology*__
107+
- __*Goethe-Institut-Bangalore, Bangalore Residency Program*__
108+
- __*(Art)ScienceBLR*__
109+
- __*The Indian Sonic Research Organization*__
110+
- __*Wisp Kollektiv*__
111+
- __*Special thanks to Michael Romanov for Ambisonic Decoder support*__
112+

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins
3+

_config.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
title: The Indian Sonic Research Organization
2+
description: A sound research and experimental space
3+
author: theisro
4+
url: http://theisro.github.io/
5+
excerpt_separator: <!--more-->
6+
#baseurl: /beta
7+
paginate: 10
8+
paginate_path: /page/:num/
9+
10+
exclude: [
11+
'Makefile',
12+
'Gemfile',
13+
'Gemfile.lock',
14+
'README.md'
15+
]
16+
17+
sass:
18+
sass_dir: assets/css
19+
20+
plugins:
21+
- jekyll-sitemap
22+
- jekyll-seo-tag
23+
- jekyll-paginate

_includes/collecttags.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{% assign rawtags = "" %}
2+
{% for post in site.posts %}
3+
{% assign ttags = post.tags | join:'|' | append:'|' %}
4+
{% assign rawtags = rawtags | append:ttags %}
5+
{% endfor %}
6+
{% assign rawtags = rawtags | split:'|' | sort %}
7+
8+
{% assign site.tags = "" %}
9+
{% for tag in rawtags %}
10+
{% if tag != "" %}
11+
{% if tags == "" %}
12+
{% assign tags = tag | split:'|' %}
13+
{% endif %}
14+
{% unless tags contains tag %}
15+
{% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
16+
{% endunless %}
17+
{% endif %}
18+
{% endfor %}
19+

_includes/date.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
{% assign day = include.date | date: "%-d" %}
3+
{{ include.date | date: "%B" }}
4+
{% case day %}
5+
{% when '1' or '21' or '31' %}{{ day }}st
6+
{% when '2' or '22' %}{{ day }}nd
7+
{% when '3' or '23' %}{{ day }}rd
8+
{% else %}{{ day }}th
9+
{% endcase %},
10+
{{ include.date | date: "%Y %I:%M %P" }}
11+

_includes/footer.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<footer>
2+
</footer>
3+
4+
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js" integrity="sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ" crossorigin="anonymous"></script>
5+
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
6+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
7+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
8+
<script charset="utf-8" src="{{ site.baseurl }}/assets/js/app.js"></script>
9+

_includes/head.html

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
4+
<title>{{ page.title }}</title>
5+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css" type="text/css" media="screen" title="no title" charset="utf-8">
6+
<link rel="shortcut icon" href="{{ site.baseurl }}/favicon.ico">
7+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
8+
{% if site.tags != "" %}
9+
{% include collecttags.html %}
10+
{% endif %}
11+
{% if page.excerpt %}
12+
<meta name="description" content="{{ page.excerpt | strip_html }}" />
13+
<meta property="og:description" content="{{ page.excerpt | strip_html }}" />
14+
{% elsif page.description %}
15+
<meta name="description" content="{{ page.description }}" />
16+
<meta property="og:description" content="{{ page.description }}" />
17+
{% endif %}
18+
<meta property="og:locale" content="en_IN" />
19+
<meta property="og:type" content="article" />
20+
<meta property="og:title" content="{{ page.title }}" />
21+
22+
<meta property="og:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
23+
<meta property="og:site_name" content="(Art)ScienceBLR" />
24+
25+
{% if page.tags %}
26+
{% for tag in page.tags %}
27+
<meta property="article:tag" content="{{ tag }}" />
28+
{% endfor %}
29+
{% endif %}
30+
{% if page.event_date %}
31+
<script type="application/ld+json">
32+
{
33+
"@context": "http://www.schema.org",
34+
"@type": "Event",
35+
"name": "page.title",
36+
"startDate": "{{ page.event_date }}",
37+
"location": {
38+
"@type": "Place",
39+
"name": "{{ page.location_name }}",
40+
"address": "{{ page.location }}"
41+
},
42+
"performer": [
43+
{% for performer in page.performers %}
44+
{
45+
"@type": "{{ performer.type }}",
46+
"name": "{{ performer.name }}",
47+
"sameAs": "{{ performer.url }}"
48+
}{% unless forloop.last %},{% endunless %}
49+
{% endfor %}
50+
]
51+
}
52+
</script>
53+
{% endif %}
54+
<!-- seo plugin -->
55+
{% seo %}
56+
</head>
57+

_includes/header.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<header class="container-fluid top-header">
2+
<div class="row">
3+
<div class="col-md-12">
4+
<a href="{{ site.baseurl }}/">
5+
{% if page.banner_img %}
6+
<img src="{{ site.baseurl }}{{ page.banner_img }}">
7+
{% else %}
8+
<img src="{{ site.baseurl }}/assets/img/isro_about_thecave.jpg">
9+
{% endif %}
10+
</a>
11+
</div>
12+
</div>
13+
</header>
14+
<div class="container-fluid">
15+
<div class="row">
16+
<div class="col-md-12">
17+
<h1>The Indian Sonic Research Organization</h1>
18+
</div>
19+
</div>
20+
</div>
21+

_includes/tagcloud.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h2>Tag Cloud</h2>
2+
{% capture temptags %}
3+
{% for tag in site.tags %}
4+
{{ tag[1].size | plus: 1000 }}#{{ tag[0] }}#{{ tag[1].size }}
5+
{% endfor %}
6+
{% endcapture %}
7+
{% assign sortedtemptags = temptags | split:' ' | sort | reverse %}
8+
{% for temptag in sortedtemptags %}
9+
{% assign tagitems = temptag | split: '#' %}
10+
{% capture tagname %}{{ tagitems[1] }}{% endcapture %}
11+
<a href="{{ site.baseurl }}/tag/{{ tagname }}"><code class="highlighter-rouge"><nobr>{{ tagname }}</nobr></code></a>
12+
{% endfor %}

_layouts/default.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!doctype html>
2+
<html lang="en" prefix="og: http://ogp.me/ns#">
3+
{%- include head.html -%}
4+
<body>
5+
{%- include header.html -%}
6+
7+
{{ content }}
8+
9+
{% capture difference %}{{ page.tags | size | minus: 1 }}{% endcapture %}
10+
{% if difference != '-1' %}
11+
<section class='tags'>
12+
<div class="container-fluid">
13+
<div class="row">
14+
<div class="col-md-6 offset-md-1">
15+
<h4>Tags:</h4>
16+
{% for tag in page.tags %}
17+
{% capture tag_name %}{{ tag }}{% endcapture %}
18+
<a href="{{ site.baseurl }}/tag/{{ tag_name }}"><code class="highlighter-rouge">{{ tag_name }}</code></a>
19+
{% endfor %}
20+
</div>
21+
</div>
22+
</div>
23+
</section>
24+
{% endif %}
25+
{%- include footer.html -%}
26+
</body>
27+
</html>

_layouts/page.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: default
3+
---
4+
5+
<section class="container-fluid">
6+
<div class="row">
7+
<div class="col-md-8 offset-md-4">
8+
{{ content }}
9+
</div>
10+
</div>
11+
</section>

about.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: page
3+
---
4+
5+
# Organization
6+
The Indian Sonic Research Organisation is a collective of instrument builders and artists dedicated to the proliferation of experimental music and sound art. We experiment with old and new technologies including DIY and home-made instruments made with discarded electronics and found objects. We run a community music lab where we make, perform, teach and collaborate through workshops, performances and artist residencies. Our independent record label disseminates works by Asian composers, sound artists and musicians from India and abroad.
7+
8+
# Education
9+
The Indian Sonic Research Organisation values the sharing and dissemination of ideas through an open source model. We run workshops for adults and children that explore concepts of sound, electronics, programming and physics. We design educational kits for public distribution to emphasise the value of hands on making. Our projects and programs are fundamentally rooted in the facilitation of workshops, mentorships, apprenticeships and other educational activities. To see a list of past workshops [click here.](/education.html)
10+
11+
# Residencies
12+
The Indian Sonic Research Organisation offers residencies to artists, musicians, theorists, instrument builders who wish to push the boundaries of their practice. To learn more about our residencies, application procedure and past residencies [click here.](/residency.html)
13+
14+
# Contact
15+
16+

amihere.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: page
3+
---
4+
5+
![Viv Corringham Performance](/assets/img/vivcorringhamperformance.jpg)
6+
7+
# Am I Here ?
8+
## Cathy Lane
9+
10+
Cathy Lane’s ‘Am I Here? ’ is a playful exploration of how the concept of ‘Be Here Now’ translates to recorded sound. The work takes the listener on a journey through time and space – from sounds of the stone carvers of Mamallapuram, the Bangalore laundry ghats and the temple of Madurai in South India through the glacial lagoons of Iceland to birdsong in a domestic garden in inner London stopping off in Chile, Italy, Norway and Scotland along the way. These field recordings have been made at different times over the last decade and often feature the composer’s voice commentating on what she can see or hear.
11+
12+
In performance we are immersed by these recordings as they are manipulated live within ‘Am I Here? gently questions the nature of a recording and the various degrees of embodied or disembodied presence in a recorded artefact. It challenges the commonly held belief that field recordings are an ‘objective document’ and reasserts the inability of the recordist to escape their own physical and subjective presence.
13+
14+
Listen to excerpts of Am I here?

archives.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
banner_img: /assets/img/archives.jpg
4+
---
5+
6+
<section class="container-fluid">
7+
<div class="row">
8+
<div class="col-md-4">
9+
&nbsp;
10+
</div>
11+
<div class="col-md-4">
12+
<h3>Archives</h3>
13+
<ul>
14+
<li><a href="/live.html">Live</a></li>
15+
<li><a href="/residencyarchive.html">Residencies</a></li>
16+
<li>Artists</li>
17+
<li>Sounds</li>
18+
<li>Field Trips</li>
19+
<li>Workshops</li>
20+
<li>Machines</li>
21+
<li>Software</li>
22+
<li>Hardware</li>
23+
<li>Texts</li>
24+
</ul>
25+
</div>
26+
</div>
27+
</section>

0 commit comments

Comments
 (0)