Csound Csound-dev Csound-tekno Search About

Re: [Csnd] fout Android

Date2012-08-20 04:03
From"Art Hunkins"
SubjectRe: [Csnd] fout Android
Thanks for your thorough response, Roger.
 
Your suspicion is correct: I'm not building an Android app. I'm just trying to use Steven Yi's Csound Editor app to run .csd files that produce an output WAV instead of a realtime rendering.
 
So all I want to do is give Csound Editor the permission to write WAV files.
 
Right now I'm wondering why Steven (I think it was he) didn't include this permission in his app.
 
But perhaps I still fail to see clearly. Steven?
 
Art Hunkins 
----- Original Message -----
Sent: Sunday, August 19, 2012 10:19 PM
Subject: Re: [Csnd] fout Android

I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool.  It sounds like you are possibly trying to run an already built app?  If so you need the source for it.

In the Eclipse project you will see a file called Manifest.xml.  Android uses this to grant permission and do other things related to packaging of the app.

In the top part of the Manifest.xml you will see this:

<?xml version="1.0" encoding="utf-8"?>
    package="aorch.layout"
    android:versionCode="3"
    android:versionName="1.3"
 
  >
            <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk android:minSdkVersion="9" />

    <application     


You want to add the line in bold before the "application" section.  This will allow Csound to be able to write files to the sdcard.

On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Roger,
 
If you or someone could kindly lead me through the process of changing permissions in a manifest.xml file, I'd be much obliged. I'm clueless.
 
I've ES File Explorer app installed, and have managed in Settings to enable "Up to Root (enable up to Root directory)", and tried to enable "Root Explorer (only for rooted devices) - but am not able to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2 (7.0).
 
I've apparently access to all Root folders, but can't locate anywhere folders for individual applications, especially any Csound folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing all hidden files.) I don't even know if the two Csound apps are supposed to be on the sdcard or internal memory (I've supposed the sdcard, but what do I know).
 
The darkness is great. Enlightenment is highly prized.
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 11:21 PM
Subject: Re: [Csnd] fout Android

Add this to your manifest xml:
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

And you path (assuming you want to write to the sdcard) would be /mnt/sdcard/<your directory>, otherwise it writes to /data/data/yourpackagename

On Sat, Aug 18, 2012 at 7:53 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Please tell me how you fixed the permissions.
 
And by default where does the file write? Or do you need to specify the complete path?
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 6:04 PM
Subject: Re: [Csnd] fout Android

Yes it was a permissions issue.  Got it fixed.  Thanks.

On Sat, Aug 18, 2012 at 5:00 PM, Steven Yi <stevenyi@gmail.com> wrote:

If it is a permissions issue, ot would be a one line change to add the permission to the android application that uses csound.

On Aug 18, 2012 2:51 PM, "Art Hunkins" <abhunkin@uncg.edu> wrote:
Victor answered a similar inquiry from me a few days ago by saying that he thought Csound on Android (if I understand correctly) did not have permission to write WAV files.
 
I'd like to know if this is: a current limitation of Android, or a limitation of the Csound implementation on Android? (I'd assume the former - and hope this may change in the near future, as may the lack of MIDI implementation.)
 
Art Hunkins
----- Original Message -----
To: csound
Sent: Saturday, August 18, 2012 5:28 PM
Subject: [Csnd] fout Android

Does anyone know if fout works on Android? If so what directory should I attempt to put the filename into?  I get this error:

08-18 16:23:54.917: I/AndroidCsound(14705): error opening sound file '/sdcard/testaudio/test.wav'





Date2012-08-21 14:05
FromVictor Lazzarini
SubjectRe: [Csnd] fout Android
A new version of the CSDPlayer app for android is available with the file writing permissions. 


Thanks for Art and Roger for pointing out what we could not do with it.

Victor

On 20 Aug 2012, at 04:03, Art Hunkins wrote:

Thanks for your thorough response, Roger.
 
Your suspicion is correct: I'm not building an Android app. I'm just trying to use Steven Yi's Csound Editor app to run .csd files that produce an output WAV instead of a realtime rendering.
 
So all I want to do is give Csound Editor the permission to write WAV files.
 
Right now I'm wondering why Steven (I think it was he) didn't include this permission in his app.
 
But perhaps I still fail to see clearly. Steven?
 
Art Hunkins 
----- Original Message -----
Sent: Sunday, August 19, 2012 10:19 PM
Subject: Re: [Csnd] fout Android

I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool.  It sounds like you are possibly trying to run an already built app?  If so you need the source for it.

In the Eclipse project you will see a file called Manifest.xml.  Android uses this to grant permission and do other things related to packaging of the app.

In the top part of the Manifest.xml you will see this:

<?xml version="1.0" encoding="utf-8"?>
    package="aorch.layout"
    android:versionCode="3"
    android:versionName="1.3"
 
  >
            <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk android:minSdkVersion="9" />

    <application     


You want to add the line in bold before the "application" section.  This will allow Csound to be able to write files to the sdcard.

On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Roger,
 
If you or someone could kindly lead me through the process of changing permissions in a manifest.xml file, I'd be much obliged. I'm clueless.
 
I've ES File Explorer app installed, and have managed in Settings to enable "Up to Root (enable up to Root directory)", and tried to enable "Root Explorer (only for rooted devices) - but am not able to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2 (7.0).
 
I've apparently access to all Root folders, but can't locate anywhere folders for individual applications, especially any Csound folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing all hidden files.) I don't even know if the two Csound apps are supposed to be on the sdcard or internal memory (I've supposed the sdcard, but what do I know).
 
The darkness is great. Enlightenment is highly prized.
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 11:21 PM
Subject: Re: [Csnd] fout Android

Add this to your manifest xml:
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

And you path (assuming you want to write to the sdcard) would be /mnt/sdcard/<your directory>, otherwise it writes to /data/data/yourpackagename

On Sat, Aug 18, 2012 at 7:53 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Please tell me how you fixed the permissions.
 
And by default where does the file write? Or do you need to specify the complete path?
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 6:04 PM
Subject: Re: [Csnd] fout Android

Yes it was a permissions issue.  Got it fixed.  Thanks.

On Sat, Aug 18, 2012 at 5:00 PM, Steven Yi <stevenyi@gmail.com> wrote:

If it is a permissions issue, ot would be a one line change to add the permission to the android application that uses csound.

On Aug 18, 2012 2:51 PM, "Art Hunkins" <abhunkin@uncg.edu> wrote:
Victor answered a similar inquiry from me a few days ago by saying that he thought Csound on Android (if I understand correctly) did not have permission to write WAV files.
 
I'd like to know if this is: a current limitation of Android, or a limitation of the Csound implementation on Android? (I'd assume the former - and hope this may change in the near future, as may the lack of MIDI implementation.)
 
Art Hunkins
----- Original Message -----
To: csound
Sent: Saturday, August 18, 2012 5:28 PM
Subject: [Csnd] fout Android

Does anyone know if fout works on Android? If so what directory should I attempt to put the filename into?  I get this error:

08-18 16:23:54.917: I/AndroidCsound(14705): error opening sound file '/sdcard/testaudio/test.wav'






Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2012-08-21 14:08
From"Dr. Richard Boulanger"
SubjectRe: [Csnd] fout Android
Excellent News.  Thanks Victor, Roger and Art!

Victor and Steven and Roger and Art and other Csounders....

Which Android Tablets are you using and which do you recommend that other Csounders might consider using/purchasing for Csound Development.

Richard
___________________________________

Dr. Richard Boulanger, Ph.D.

Professor of Electronic Production and Design
Professional Writing and Music Technology Division
Berklee College of Music
1140 Boylston Street
Boston, MA 02215-3693

617-747-2485 (office)
774-488-9166 (cell)


____________________________________



____________________________________

____________________________________

On Aug 21, 2012, at 9:05 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:

A new version of the CSDPlayer app for android is available with the file writing permissions. 


Thanks for Art and Roger for pointing out what we could not do with it.

Victor

On 20 Aug 2012, at 04:03, Art Hunkins wrote:

Thanks for your thorough response, Roger.
 
Your suspicion is correct: I'm not building an Android app. I'm just trying to use Steven Yi's Csound Editor app to run .csd files that produce an output WAV instead of a realtime rendering.
 
So all I want to do is give Csound Editor the permission to write WAV files.
 
Right now I'm wondering why Steven (I think it was he) didn't include this permission in his app.
 
But perhaps I still fail to see clearly. Steven?
 
Art Hunkins 
----- Original Message -----
Sent: Sunday, August 19, 2012 10:19 PM
Subject: Re: [Csnd] fout Android

I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool.  It sounds like you are possibly trying to run an already built app?  If so you need the source for it.

In the Eclipse project you will see a file called Manifest.xml.  Android uses this to grant permission and do other things related to packaging of the app.

In the top part of the Manifest.xml you will see this:

<?xml version="1.0" encoding="utf-8"?>
    package="aorch.layout"
    android:versionCode="3"
    android:versionName="1.3"
 
  >
            <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk android:minSdkVersion="9" />

    <application     


You want to add the line in bold before the "application" section.  This will allow Csound to be able to write files to the sdcard.

On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Roger,
 
If you or someone could kindly lead me through the process of changing permissions in a manifest.xml file, I'd be much obliged. I'm clueless.
 
I've ES File Explorer app installed, and have managed in Settings to enable "Up to Root (enable up to Root directory)", and tried to enable "Root Explorer (only for rooted devices) - but am not able to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2 (7.0).
 
I've apparently access to all Root folders, but can't locate anywhere folders for individual applications, especially any Csound folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing all hidden files.) I don't even know if the two Csound apps are supposed to be on the sdcard or internal memory (I've supposed the sdcard, but what do I know).
 
The darkness is great. Enlightenment is highly prized.
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 11:21 PM
Subject: Re: [Csnd] fout Android

Add this to your manifest xml:
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

And you path (assuming you want to write to the sdcard) would be /mnt/sdcard/<your directory>, otherwise it writes to /data/data/yourpackagename

On Sat, Aug 18, 2012 at 7:53 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Please tell me how you fixed the permissions.
 
And by default where does the file write? Or do you need to specify the complete path?
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 6:04 PM
Subject: Re: [Csnd] fout Android

Yes it was a permissions issue.  Got it fixed.  Thanks.

On Sat, Aug 18, 2012 at 5:00 PM, Steven Yi <stevenyi@gmail.com> wrote:

If it is a permissions issue, ot would be a one line change to add the permission to the android application that uses csound.

On Aug 18, 2012 2:51 PM, "Art Hunkins" <abhunkin@uncg.edu> wrote:
Victor answered a similar inquiry from me a few days ago by saying that he thought Csound on Android (if I understand correctly) did not have permission to write WAV files.
 
I'd like to know if this is: a current limitation of Android, or a limitation of the Csound implementation on Android? (I'd assume the former - and hope this may change in the near future, as may the lack of MIDI implementation.)
 
Art Hunkins
----- Original Message -----
To: csound
Sent: Saturday, August 18, 2012 5:28 PM
Subject: [Csnd] fout Android

Does anyone know if fout works on Android? If so what directory should I attempt to put the filename into?  I get this error:

08-18 16:23:54.917: I/AndroidCsound(14705): error opening sound file '/sdcard/testaudio/test.wav'






Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Date2012-08-21 14:21
FromVictor Lazzarini
SubjectRe: [Csnd] fout Android
I am using the Galaxy Tab 10.1, but it looks like you'll not be able to buy this in the USA (thanks to Apple). Steven has got the new Google Nexus Tab, which looks very good. I think that is probably the best bet at the moment. We'll be getting one to try out very soon.

Victor
On 21 Aug 2012, at 14:08, Dr. Richard Boulanger wrote:

Excellent News.  Thanks Victor, Roger and Art!

Victor and Steven and Roger and Art and other Csounders....

Which Android Tablets are you using and which do you recommend that other Csounders might consider using/purchasing for Csound Development.

Richard
___________________________________

Dr. Richard Boulanger, Ph.D.

Professor of Electronic Production and Design
Professional Writing and Music Technology Division
Berklee College of Music
1140 Boylston Street
Boston, MA 02215-3693

617-747-2485 (office)
774-488-9166 (cell)


____________________________________



____________________________________

____________________________________

On Aug 21, 2012, at 9:05 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:

A new version of the CSDPlayer app for android is available with the file writing permissions. 


Thanks for Art and Roger for pointing out what we could not do with it.

Victor

On 20 Aug 2012, at 04:03, Art Hunkins wrote:

Thanks for your thorough response, Roger.
 
Your suspicion is correct: I'm not building an Android app. I'm just trying to use Steven Yi's Csound Editor app to run .csd files that produce an output WAV instead of a realtime rendering.
 
So all I want to do is give Csound Editor the permission to write WAV files.
 
Right now I'm wondering why Steven (I think it was he) didn't include this permission in his app.
 
But perhaps I still fail to see clearly. Steven?
 
Art Hunkins 
----- Original Message -----
Sent: Sunday, August 19, 2012 10:19 PM
Subject: Re: [Csnd] fout Android

I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool.  It sounds like you are possibly trying to run an already built app?  If so you need the source for it.

In the Eclipse project you will see a file called Manifest.xml.  Android uses this to grant permission and do other things related to packaging of the app.

In the top part of the Manifest.xml you will see this:

<?xml version="1.0" encoding="utf-8"?>
    package="aorch.layout"
    android:versionCode="3"
    android:versionName="1.3"
 
  >
            <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk android:minSdkVersion="9" />

    <application     


You want to add the line in bold before the "application" section.  This will allow Csound to be able to write files to the sdcard.

On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Roger,
 
If you or someone could kindly lead me through the process of changing permissions in a manifest.xml file, I'd be much obliged. I'm clueless.
 
I've ES File Explorer app installed, and have managed in Settings to enable "Up to Root (enable up to Root directory)", and tried to enable "Root Explorer (only for rooted devices) - but am not able to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2 (7.0).
 
I've apparently access to all Root folders, but can't locate anywhere folders for individual applications, especially any Csound folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing all hidden files.) I don't even know if the two Csound apps are supposed to be on the sdcard or internal memory (I've supposed the sdcard, but what do I know).
 
The darkness is great. Enlightenment is highly prized.
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 11:21 PM
Subject: Re: [Csnd] fout Android

Add this to your manifest xml:
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

And you path (assuming you want to write to the sdcard) would be /mnt/sdcard/<your directory>, otherwise it writes to /data/data/yourpackagename

On Sat, Aug 18, 2012 at 7:53 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Please tell me how you fixed the permissions.
 
And by default where does the file write? Or do you need to specify the complete path?
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 6:04 PM
Subject: Re: [Csnd] fout Android

Yes it was a permissions issue.  Got it fixed.  Thanks.

On Sat, Aug 18, 2012 at 5:00 PM, Steven Yi <stevenyi@gmail.com> wrote:

If it is a permissions issue, ot would be a one line change to add the permission to the android application that uses csound.

On Aug 18, 2012 2:51 PM, "Art Hunkins" <abhunkin@uncg.edu> wrote:
Victor answered a similar inquiry from me a few days ago by saying that he thought Csound on Android (if I understand correctly) did not have permission to write WAV files.
 
I'd like to know if this is: a current limitation of Android, or a limitation of the Csound implementation on Android? (I'd assume the former - and hope this may change in the near future, as may the lack of MIDI implementation.)
 
Art Hunkins
----- Original Message -----
To: csound
Sent: Saturday, August 18, 2012 5:28 PM
Subject: [Csnd] fout Android

Does anyone know if fout works on Android? If so what directory should I attempt to put the filename into?  I get this error:

08-18 16:23:54.917: I/AndroidCsound(14705): error opening sound file '/sdcard/testaudio/test.wav'






Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2012-08-21 14:52
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] fout Android
> I am using the Galaxy Tab 10.1, but it looks like you'll not be able to
> buy this in the USA (thanks to Apple). Steven has got the new Google Nexus
> Tab, which looks very good. I think that is probably the best bet at the
> moment. We'll be getting one to try out very soon.
>

Is it not the Nexus that had screen mounting quality issues?  Or am I
confused?




Date2012-08-21 16:37
FromRoger Kelly
SubjectRe: [Csnd] fout Android
I am using the quad-core Asus Prime TF201.  


Plenty of power for making great Csound music.

On Tue, Aug 21, 2012 at 8:21 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
I am using the Galaxy Tab 10.1, but it looks like you'll not be able to buy this in the USA (thanks to Apple). Steven has got the new Google Nexus Tab, which looks very good. I think that is probably the best bet at the moment. We'll be getting one to try out very soon.

Victor
On 21 Aug 2012, at 14:08, Dr. Richard Boulanger wrote:

Excellent News.  Thanks Victor, Roger and Art!

Victor and Steven and Roger and Art and other Csounders....

Which Android Tablets are you using and which do you recommend that other Csounders might consider using/purchasing for Csound Development.

Richard
___________________________________

Dr. Richard Boulanger, Ph.D.

Professor of Electronic Production and Design
Professional Writing and Music Technology Division
Berklee College of Music
1140 Boylston Street
Boston, MA 02215-3693

617-747-2485 (office)
774-488-9166 (cell)


____________________________________



____________________________________

____________________________________

On Aug 21, 2012, at 9:05 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:

A new version of the CSDPlayer app for android is available with the file writing permissions. 


Thanks for Art and Roger for pointing out what we could not do with it.

Victor

On 20 Aug 2012, at 04:03, Art Hunkins wrote:

Thanks for your thorough response, Roger.
 
Your suspicion is correct: I'm not building an Android app. I'm just trying to use Steven Yi's Csound Editor app to run .csd files that produce an output WAV instead of a realtime rendering.
 
So all I want to do is give Csound Editor the permission to write WAV files.
 
Right now I'm wondering why Steven (I think it was he) didn't include this permission in his app.
 
But perhaps I still fail to see clearly. Steven?
 
Art Hunkins 
----- Original Message -----
From: Roger Kelly
Sent: Sunday, August 19, 2012 10:19 PM
Subject: Re: [Csnd] fout Android

I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool.  It sounds like you are possibly trying to run an already built app?  If so you need the source for it.

In the Eclipse project you will see a file called Manifest.xml.  Android uses this to grant permission and do other things related to packaging of the app.

In the top part of the Manifest.xml you will see this:

<?xml version="1.0" encoding="utf-8"?>
    package="aorch.layout"
    android:versionCode="3"
    android:versionName="1.3"
 
  >
            <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk android:minSdkVersion="9" />

    <application     


You want to add the line in bold before the "application" section.  This will allow Csound to be able to write files to the sdcard.

On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Roger,
 
If you or someone could kindly lead me through the process of changing permissions in a manifest.xml file, I'd be much obliged. I'm clueless.
 
I've ES File Explorer app installed, and have managed in Settings to enable "Up to Root (enable up to Root directory)", and tried to enable "Root Explorer (only for rooted devices) - but am not able to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2 (7.0).
 
I've apparently access to all Root folders, but can't locate anywhere folders for individual applications, especially any Csound folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing all hidden files.) I don't even know if the two Csound apps are supposed to be on the sdcard or internal memory (I've supposed the sdcard, but what do I know).
 
The darkness is great. Enlightenment is highly prized.
 
Art Hunkins
----- Original Message -----
Sent: Saturday, August 18, 2012 11:21 PM
Subject: Re: [Csnd] fout Android

Add this to your manifest xml:
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

And you path (assuming you want to write to the sdcard) would be /mnt/sdcard/<your directory>, otherwise it writes to /data/data/yourpackagename

On Sat, Aug 18, 2012 at 7:53 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
Please tell me how you fixed the permissions.
 
And by default where does the file write? Or do you need to specify the complete path?
 
Art Hunkins
----- Original Message -----
From: Roger Kelly
Sent: Saturday, August 18, 2012 6:04 PM
Subject: Re: [Csnd] fout Android

Yes it was a permissions issue.  Got it fixed.  Thanks.

On Sat, Aug 18, 2012 at 5:00 PM, Steven Yi <stevenyi@gmail.com> wrote:

If it is a permissions issue, ot would be a one line change to add the permission to the android application that uses csound.

On Aug 18, 2012 2:51 PM, "Art Hunkins" <abhunkin@uncg.edu> wrote:
Victor answered a similar inquiry from me a few days ago by saying that he thought Csound on Android (if I understand correctly) did not have permission to write WAV files.
 
I'd like to know if this is: a current limitation of Android, or a limitation of the Csound implementation on Android? (I'd assume the former - and hope this may change in the near future, as may the lack of MIDI implementation.)
 
Art Hunkins
----- Original Message -----
From: Roger Kelly
To: csound
Sent: Saturday, August 18, 2012 5:28 PM
Subject: [Csnd] fout Android

Does anyone know if fout works on Android? If so what directory should I attempt to put the filename into?  I get this error:

08-18 16:23:54.917: I/AndroidCsound(14705): error opening sound file '/sdcard/testaudio/test.wav'






Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
Victor dot Lazzarini AT nuim dot ie





Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
Victor dot Lazzarini AT nuim dot ie