<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Modartt user forum - Mac application to run Pianoteq with midi playlists]]></title>
		<link>https://forum.modartt.com/viewtopic.php?id=3537</link>
		<description><![CDATA[The most recent posts in Mac application to run Pianoteq with midi playlists.]]></description>
		<lastBuildDate>Wed, 24 Sep 2014 17:07:17 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934681#p934681</link>
			<description><![CDATA[<div class="quotebox"><cite>thono2007 wrote:</cite><blockquote><p>@Gilles: Thanks for your suggested solution. As I&#039;m not a Unik/Linux freak I had difficulties to get your point, so it motivated to look further!</p><p>And guess what: I think I found a reasonable solution:</p><p>MacOS has an integrated Midi Loopback feature (IAC driver in the Audio midi setup).<br />That bus I could use in PT5 as well as in a simple midi Player (like Qmidi from Mixagee <a href="http://www.mixagesoftware.com">http://www.mixagesoftware.com</a>), which both supports a midi library as well as playlists.</p><p>Maybe anyone else founds this useful.</p></blockquote></div><p>That looks like a simple solution. On my old Windows system, I used the free VanBasco midi player that does a similar thing ( <a href="http://www.vanbasco.com/">http://www.vanbasco.com/</a> ) .</p><p>I used it (still do in fact) to play a midi file with a GigaStudio sampled instrument. My point in giving that short shell script is that people may not know how to access Pianoteq through a command line on the Mac, thinking this is reserved to Linux. Also, I recently completed a command line driven algorithmic composition program in C, so my mind is currently set to this kind of basic Unix computation on the Mac.</p>]]></description>
			<author><![CDATA[null@example.com (Gilles)]]></author>
			<pubDate>Wed, 24 Sep 2014 17:07:17 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934681#p934681</guid>
		</item>
		<item>
			<title><![CDATA[Re: Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934673#p934673</link>
			<description><![CDATA[<p>@Gilles: Thanks for your suggested solution. As I&#039;m not a Unik/Linux freak I had difficulties to get your point, so it motivated to look further!</p><p>And guess what: I think I found a reasonable solution:</p><p>MacOS has an integrated Midi Loopback feature (IAC driver in the Audio midi setup).<br />That bus I could use in PT5 as well as in a simple midi Player (like Qmidi from Mixagee <a href="http://www.mixagesoftware.com">http://www.mixagesoftware.com</a>), which both supports a midi library as well as playlists.</p><p>Maybe anyone else finds&nbsp; this useful.</p>]]></description>
			<author><![CDATA[null@example.com (thono2007)]]></author>
			<pubDate>Wed, 24 Sep 2014 13:54:09 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934673#p934673</guid>
		</item>
		<item>
			<title><![CDATA[Re: Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934659#p934659</link>
			<description><![CDATA[<p>Considering OSX&#039;s UNIX roots, seems weird nobody has packaged up one of the many open source MIDI/audio playlist/jukebox applications to run under OSX.&nbsp; Under Linux/BSD/etc, Audacious can playlist any type of audio file and for MIDI files can sent to either a Fluidsynth plugin, hardware MIDI interfaces or virtual MIDI interfaces (create by Pianoteq/ZynAddSubSynth/Fluidsynth/etc).</p><p>EDIT, here&#039;s a link on compiling Audacious on Mac OS-X:</p><p><a href="https://lifeforms.nl/20140302/building-audacious-os-x-mavericks/">https://lifeforms.nl/20140302/building-...mavericks/</a></p>]]></description>
			<author><![CDATA[null@example.com (Mossy)]]></author>
			<pubDate>Mon, 22 Sep 2014 07:00:04 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934659#p934659</guid>
		</item>
		<item>
			<title><![CDATA[Re: Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934649#p934649</link>
			<description><![CDATA[<p>Here is one simple way to do what you want with a simple shell script. Since OSX is Unix-based, it includes the standard shell, the only trick is to be careful about embedded blanks in the file names...many things don&#039;t work as expected with those at the shell level...</p><p>Say you have unzipped the collection in a directory named &quot;e-piano-competition-2002-2009&quot; as I did.<br />In the parent directory, create a shell file, named for instance PlayList.sh with the following content (assuming Pianoteq was installed in the default directory):<br /><em><br />#!/bin/sh<br />ls e-piano-competition-2002-2009/*$1*smf* &gt; list<br />while read file<br />do<br />echo $file<br />cp &quot;$file&quot; file.mid<br />/Applications/Pianoteq\ 5/Pianoteq\ 5.app/Contents/MacOS/Pianoteq\ 5 --preset &quot;D4 Daily Practice&quot; --midi file.mid --headless --play-and-quit<br />done &lt;list<br />rm list file.mid<br /></em><br />Don&#039;t forget to make it excutable by <em>chmod +x ./PlayList.sh</em></p><p>Then, for instance, the command <em> ./PlayList.sh Bach</em> will play all the Bach files in the collection.</p><p>Of course you can change the preset in the file and if you prefer, take away the <em>--headless</em> parameter if you want the GUI visible. Other parameters are displayed with the <em>--help</em> option.</p><p>That is one way to create a temporary playlist to render with Pianoteq. The parameter can be any substring of the file names, for instance the name of a performer.</p><p>No parameter means all the files so beware. (You can always stop the process with ctrl-z)</p><p>(I pass a copy of the file to Pianoteq because the blanks in the names cause a lot of problems when passed directly inside a script as a parameter...)</p><p>Hope this helps! <i class="far fa-smile smiley"></i></p>]]></description>
			<author><![CDATA[null@example.com (Gilles)]]></author>
			<pubDate>Sun, 21 Sep 2014 21:39:09 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934649#p934649</guid>
		</item>
		<item>
			<title><![CDATA[Re: Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934638#p934638</link>
			<description><![CDATA[<p>Hi<br />I dont know about midifileplaylists, but I am using Garageband. Download midifile, (if it says you have no audiodevice, ignore it)) and drag the&nbsp; downloaded midifile to the empty area below the existing tracks. Choose ptq and modify. I send it to iTunes and have my playlists there. Works for me.</p>]]></description>
			<author><![CDATA[null@example.com (Pianoteqenthusiast)]]></author>
			<pubDate>Sun, 21 Sep 2014 09:36:00 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934638#p934638</guid>
		</item>
		<item>
			<title><![CDATA[Mac application to run Pianoteq with midi playlists]]></title>
			<link>https://forum.modartt.com/viewtopic.php?pid=934628#p934628</link>
			<description><![CDATA[<p>Does anyone know a Mac application which can run Pianoteq (as a VST or AU) and which can handle many midi files and probably can generate one or more playlists ?</p><p>I&#039;m in the process of downloading the midi files from the Piano-e-competition, because I really like them.<br />I think they are really nice to hear and also very useful to test the various PT options and settings.<br />Does anyone know if it is allowed to redistribute the midi-files once downloaded?</p><p>Thanks for help <i class="far fa-smile smiley"></i></p>]]></description>
			<author><![CDATA[null@example.com (thono2007)]]></author>
			<pubDate>Fri, 19 Sep 2014 21:36:11 +0000</pubDate>
			<guid>https://forum.modartt.com/viewtopic.php?pid=934628#p934628</guid>
		</item>
	</channel>
</rss>
