Re: [PD] un-routable output from [text get]

2017-02-07 Thread Roman Haefeli
Hi Liam On Die, 2017-02-07 at 07:34 +, Liam Goodacre wrote: > I'm getting some strange behavior when reading a .txt file with [text > define], where the output from [text get] isn't routeable like a > normal list. See the attached file for an example. Do other users > experience the same thing

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Antoine Rousseau
Your text file has been UTF8 encoded, and starts with a "byte order mark" (BOM) {0xEF 0xBB 0xBF}, which then is rejected by [route]. see https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8 : The UTF-8 representation of the BOM > is the byte sequence 0xEF,0xBB

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Liam Goodacre
Thanks Roman and Antoine--looks like you both go the answer at the same time! This explanation makes sense, however I am using non ASCII characters in the textfile (not the one attached, but the one I'm working on), so I guess that I need the BOM to stay there. I've rigged up a system which wil

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Lucas Cordiviola
Hi Liam, I suggest that you use: https://notepad-plus-plus.org/ as a very good replacement to “ms-windows notepad”. You can encode as “utf-8” or “utf-8-BOM”, And much more. Salutti, Lucarda. Mensaje telepatico asistido por maquinas. From: Pd-list on beh

Re: [PD] un-routable output from [text get]

2017-02-07 Thread IOhannes m zmoelnig
On 2017-02-07 09:24, Liam Goodacre wrote: > This explanation makes sense, however I am using non ASCII characters in the > textfile (not the one attached, but the one I'm working on), so I guess that > I need the BOM to stay there. no. the BOM was just another useless invention. UTF-8 (unlike U

[PD] [PD-announce] CIE Journal - Special Issue on Musical Metacreation

2017-02-07 Thread Kıvanç Tatar
It is our pleasure to announce the double special issue on Musical Metacreation recently published the ACM journal Computer in Entertainment. The double issue begins with an introduction to Musical Metacreation that covers the basic for those who are not familiar with the use of generative systems

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Lucas Cordiviola
Btw, Your example becomes “routable” if converted from “utf-8-BOM” to “utf-8” Mensaje telepatico asistido por maquinas. From: Pd-list on behalf of Lucas Cordiviola Sent: Tuesday, February 7, 2017 8:34 AM To: Liam Goodacre; PD list Subject: Re: [PD] un-routa

[PD] Unable to load a film with [pix_film]

2017-02-07 Thread girard-theo
Hi, I don’t understand why pd can’t load my film. I’m using the pix_film.help patch and when I try to open a file, in any format all I have is : [pix_film]: opening D:/Projets/Système/Videos/A3101308/A3101308.avi with format 1908 Trying DirectShow filmDS: Unable to render D:/Projets/Système/Vid

Re: [PD] Unable to load a film with [pix_film]

2017-02-07 Thread IOhannes m zmoelnig
On 2017-02-07 14:45, girard-t...@orange.fr wrote: > don’t understand why pd can’t load my film. I’m using the pix_film.help > patch and when I try to open a file, in any format all I have is : > check #1: do the files open with other players? (e.g. VLC) > [pix_film]: opening D:/Projets/Système

Re: [PD] test audio signals: Are there <~ and >~ objects?

2017-02-07 Thread cyrille henry
expr use to have licence issue that prevent it to be include in libpd; and libpd is the main reason people where trying to go vanilla. That's why I was considering that expr was not vanilla. I stand corrected. cheers c Le 07/02/2017 à 00:40, Alexandre Torres Porres a écrit : 2017-02-06 18:51

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Dan Wilcox
I feel like this should be mentioned in the help file for [text]. Otherwise, it’d be best if [text] simply swallowed the BOM if it’s detected. That of course then brings up the question whether Pd should replicate an existing BOM when writing? I dunno. > On Feb 7, 2017, at 1:42 AM, pd-list-requ