Csound Csound-dev Csound-tekno Search About

[Csnd] help with basic path issue

Date2013-04-03 21:36
FromGeorge Grella
Subject[Csnd] help with basic path issue
Hello list:

In my perpetual quest to get a handle on Csound by starting off with page 1 of The Csound Book, I've run into a problem I want to solve -- so I know what it is -- and that probably has an incredibly simple solution that I just can't see.

I'm writing out my own "101" score, exactly like this chapter, in CsoundQT-d-py 0.7.0, and I cannot get the score to read and play the "sing.aiff" sample for instr 106. I downloaded the Chapter 1 folder, and that score finds the sample within it's same folder and plays it. But, using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.

How does Csound/CsoundQT handle path information in a score? If I open Dr. B's "101" file and it plays the sample from it's own directory, why when I open my own "101" does it not play the sample from that directory? And how do I fix this?

Thanks,

George Grella

Date2013-04-03 21:50
FromOeyvind Brandtsegg
SubjectRe: [Csnd] help with basic path issue
I think Csound and CsoundQT handles paths slightly different, as they will each have a different "current working directory".
Csound, when run from the terminal uses the current directory as the "current working directory" (if you run "dir" or "ls" you can see what is in it). CsoundQT uses the directory the application (not the csd) resides in as the current working directory (I think). This way, relative paths will work differently. For example, when not giving a full path but just using the file name.
Which platform are you on btw? I am unsure if the tilde (home?) will be explicit enough as a root for your path, better use the full path from the root of your file system, e.g. /home/George/Music/Csound/etc/"sing.aiff"(unless I totally missed what the ~ means on your system...)
Please also copy the console text (csound output) with any error messages and send by email, it may help in investigating the problem.

all best
Oeyvind


2013/4/3 George Grella <george@georgegrella.org>
Hello list:

In my perpetual quest to get a handle on Csound by starting off with page 1 of The Csound Book, I've run into a problem I want to solve -- so I know what it is -- and that probably has an incredibly simple solution that I just can't see.

I'm writing out my own "101" score, exactly like this chapter, in CsoundQT-d-py 0.7.0, and I cannot get the score to read and play the "sing.aiff" sample for instr 106. I downloaded the Chapter 1 folder, and that score finds the sample within it's same folder and plays it. But, using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.

How does Csound/CsoundQT handle path information in a score? If I open Dr. B's "101" file and it plays the sample from it's own directory, why when I open my own "101" does it not play the sample from that directory? And how do I fix this?

Thanks,

George Grella



--

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp

Date2013-04-03 22:04
FromJustin Smith
SubjectRe: [Csnd] help with basic path issue
 
using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.


unless the file name has "" marks literally in its name, this will fail

try ~/Music/Csound/etc/sing.aiff

also try with ~ replaced with the literal location of your home directory if that fails 

Date2013-04-03 22:08
FromJacob Joaquin
SubjectRe: [Csnd] help with basic path issue
On windows, I have path issues with the "Run" button, but the "Run in Term" button still works. 

Best,
Jake


On Wed, Apr 3, 2013 at 2:04 PM, Justin Smith <noisesmith@gmail.com> wrote:
 
using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.


unless the file name has "" marks literally in its name, this will fail

try ~/Music/Csound/etc/sing.aiff

also try with ~ replaced with the literal location of your home directory if that fails 



--
codehop.com | #code #art #music

Date2013-04-03 22:56
FromGeorge Grella
SubjectRe: [Csnd] help with basic path issue
Of course! But that's a typo in the email message, not the score file, so no problem there.

-gg

On Apr 3, 2013, at 5:08 PM, Jacob Joaquin wrote:

On windows, I have path issues with the "Run" button, but the "Run in Term" button still works. 

Best,
Jake


On Wed, Apr 3, 2013 at 2:04 PM, Justin Smith <noisesmith@gmail.com> wrote:
 
using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.


unless the file name has "" marks literally in its name, this will fail

try ~/Music/Csound/etc/sing.aiff

also try with ~ replaced with the literal location of your home directory if that fails 



--
codehop.com | #code #art #music


Date2013-04-03 23:00
FromGeorge Grella
SubjectRe: [Csnd] help with basic path issue
Oeyvind:

I'm on Mac OS X, the tilde puts me in my User directories, under which is all the Csound stuff, both the example file that plays and mine that doesn't. CsoundQT is in the Applications directory, and the curious thing is that neither score file is there. It breaks down like this:

~/Applications/CsoundQT
~/Music/Csound/etc./sing.aiff

For the error messages, I think I've got to go back to the beginning and configure/run on command line, and it's been a while so I'll get back to everyone on that.

-gg

On Apr 3, 2013, at 4:50 PM, Oeyvind Brandtsegg wrote:

I think Csound and CsoundQT handles paths slightly different, as they will each have a different "current working directory".
Csound, when run from the terminal uses the current directory as the "current working directory" (if you run "dir" or "ls" you can see what is in it). CsoundQT uses the directory the application (not the csd) resides in as the current working directory (I think). This way, relative paths will work differently. For example, when not giving a full path but just using the file name.
Which platform are you on btw? I am unsure if the tilde (home?) will be explicit enough as a root for your path, better use the full path from the root of your file system, e.g. /home/George/Music/Csound/etc/"sing.aiff"(unless I totally missed what the ~ means on your system...)
Please also copy the console text (csound output) with any error messages and send by email, it may help in investigating the problem.

all best
Oeyvind


2013/4/3 George Grella <george@georgegrella.org>
Hello list:

In my perpetual quest to get a handle on Csound by starting off with page 1 of The Csound Book, I've run into a problem I want to solve -- so I know what it is -- and that probably has an incredibly simple solution that I just can't see.

I'm writing out my own "101" score, exactly like this chapter, in CsoundQT-d-py 0.7.0, and I cannot get the score to read and play the "sing.aiff" sample for instr 106. I downloaded the Chapter 1 folder, and that score finds the sample within it's same folder and plays it. But, using a different folder (where I am saving my own material) and with the sample file copied into it, I get nothing. I've tried writing in the path -- ~/Music/Csound/etc/"sing.aiff" -- and still no sound.

How does Csound/CsoundQT handle path information in a score? If I open Dr. B's "101" file and it plays the sample from it's own directory, why when I open my own "101" does it not play the sample from that directory? And how do I fix this?

Thanks,

George Grella



--

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp


Date2013-04-04 06:28
Fromjoachim heintz
SubjectRe: [Csnd] help with basic path issue
hi george -

some suggestions:
- you can use the opcode pwd to query the working directory
- in csoundqt, you can add a SSDIR (sound sample directory) in 
Configuration>Environment
- general, you can add any directory in the CsOptions tag with 
--env:SSDIR+=YourDir

best -

	joachim



Am 04.04.2013 00:00, schrieb George Grella:
> Oeyvind:
>
> I'm on Mac OS X, the tilde puts me in my User directories, under which
> is all the Csound stuff, both the example file that plays and mine that
> doesn't. CsoundQT is in the Applications directory, and the curious
> thing is that /neither/ score file is there. It breaks down like this:
>
> ~/Applications/CsoundQT
> ~/Music/Csound/etc./sing.aiff
>
> For the error messages, I think I've got to go back to the beginning and
> configure/run on command line, and it's been a while so I'll get back to
> everyone on that.
>
> -gg
>
> On Apr 3, 2013, at 4:50 PM, Oeyvind Brandtsegg wrote:
>
>> I think Csound and CsoundQT handles paths slightly different, as they
>> will each have a different "current working directory".
>> Csound, when run from the terminal uses the current directory as the
>> "current working directory" (if you run "dir" or "ls" you can see what
>> is in it). CsoundQT uses the directory the application (not the csd)
>> resides in as the current working directory (I think). This way,
>> relative paths will work differently. For example, when not giving a
>> full path but just using the file name.
>> Which platform are you on btw? I am unsure if the tilde (home?) will
>> be explicit enough as a root for your path, better use the full path
>> from the root of your file system, e.g.
>> /home/George/Music/Csound/etc/"sing.aiff"(unless I totally missed what
>> the ~ means on your system...)
>> Please also copy the console text (csound output) with any error
>> messages and send by email, it may help in investigating the problem.
>>
>> all best
>> Oeyvind
>>
>>
>> 2013/4/3 George Grella > >
>>
>>     Hello list:
>>
>>     In my perpetual quest to get a handle on Csound by starting off
>>     with page 1 of /The Csound Book/, I've run into a problem I want
>>     to solve -- so I know what it is -- and that probably has an
>>     incredibly simple solution that I just can't see.
>>
>>     I'm writing out my own "101" score, exactly like this chapter
>>     , in
>>     CsoundQT-d-py 0.7.0, and I cannot get the score to read and play
>>     the "sing.aiff" sample for instr 106. I downloaded the Chapter 1
>>     folder, and that score finds the sample within it's same folder
>>     and plays it. But, using a different folder (where I am saving my
>>     own material) and with the sample file copied into it, I get
>>     nothing. I've tried writing in the path --
>>     ~/Music/Csound/etc/"sing.aiff" -- and still no sound.
>>
>>     How does Csound/CsoundQT handle path information in a score? If I
>>     open Dr. B's "101" file and it plays the sample from it's own
>>     directory, why when I open my own "101" does it not play the
>>     sample from /that/ directory? And how do I fix this?
>>
>>     Thanks,
>>
>>     George Grella
>>
>>
>>
>>
>> --
>>
>> Oeyvind Brandtsegg
>> Professor of Music Technology
>> NTNU
>> 7491 Trondheim
>> Norway
>> Cell: +47 92 203 205
>>
>> http://flyndresang.no/
>> http://www.partikkelaudio.com/
>> http://soundcloud.com/brandtsegg
>> http://soundcloud.com/t-emp
>

Date2013-04-04 17:26
FromGeorge Grella
SubjectRe: [Csnd] help with basic path issue
Attachmentscompose-unknown-contact.jpg  
I put in an SSDIR path, as suggested, and that worked, and for the longer term I think the CsOptions tag looks good.

Thanks,
-gg

April 4, 2013 1:28 AM
hi george -

some suggestions:
- you can use the opcode pwd to query the working directory
- in csoundqt, you can add a SSDIR (sound sample directory) in Configuration>Environment
- general, you can add any directory in the CsOptions tag with --env:SSDIR+=YourDir

best -

    joachim






Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

April 3, 2013 6:00 PM
Oeyvind:

I'm on Mac OS X, the tilde puts me in my User directories, under which is all the Csound stuff, both the example file that plays and mine that doesn't. CsoundQT is in the Applications directory, and the curious thing is that neither score file is there. It breaks down like this:

~/Applications/CsoundQT
~/Music/Csound/etc./sing.aiff

For the error messages, I think I've got to go back to the beginning and configure/run on command line, and it's been a while so I'll get back to everyone on that.

-gg




Date2013-04-18 01:00
FromAndres Cabrera
SubjectRe: [Csnd] help with basic path issue
I've just double checked and recent versions of CsoundQt
will allow relative paths to the csd (i.e. the working directory for
each tab is the location of the csd file)

Cheers,
Andrés

On Wed, Apr 3, 2013 at 1:50 PM, Oeyvind Brandtsegg
 wrote:
> I think Csound and CsoundQT handles paths slightly different, as they will
> each have a different "current working directory".
> Csound, when run from the terminal uses the current directory as the
> "current working directory" (if you run "dir" or "ls" you can see what is in
> it). CsoundQT uses the directory the application (not the csd) resides in as
> the current working directory (I think). This way, relative paths will work
> differently. For example, when not giving a full path but just using the
> file name.
> Which platform are you on btw? I am unsure if the tilde (home?) will be
> explicit enough as a root for your path, better use the full path from the
> root of your file system, e.g.
> /home/George/Music/Csound/etc/"sing.aiff"(unless I totally missed what the ~
> means on your system...)
> Please also copy the console text (csound output) with any error messages
> and send by email, it may help in investigating the problem.
>
> all best
> Oeyvind
>
>
> 2013/4/3 George Grella 
>>
>> Hello list:
>>
>> In my perpetual quest to get a handle on Csound by starting off with page
>> 1 of The Csound Book, I've run into a problem I want to solve -- so I know
>> what it is -- and that probably has an incredibly simple solution that I
>> just can't see.
>>
>> I'm writing out my own "101" score, exactly like this chapter, in
>> CsoundQT-d-py 0.7.0, and I cannot get the score to read and play the
>> "sing.aiff" sample for instr 106. I downloaded the Chapter 1 folder, and
>> that score finds the sample within it's same folder and plays it. But, using
>> a different folder (where I am saving my own material) and with the sample
>> file copied into it, I get nothing. I've tried writing in the path --
>> ~/Music/Csound/etc/"sing.aiff" -- and still no sound.
>>
>> How does Csound/CsoundQT handle path information in a score? If I open Dr.
>> B's "101" file and it plays the sample from it's own directory, why when I
>> open my own "101" does it not play the sample from that directory? And how
>> do I fix this?
>>
>> Thanks,
>>
>> George Grella
>
>
>
>
> --
>
> Oeyvind Brandtsegg
> Professor of Music Technology
> NTNU
> 7491 Trondheim
> Norway
> Cell: +47 92 203 205
>
> http://flyndresang.no/
> http://www.partikkelaudio.com/
> http://soundcloud.com/brandtsegg
> http://soundcloud.com/t-emp