tag:blogger.com,1999:blog-282921492009-02-21T00:44:56.367-08:00Allpowertabs NewsVisit this site to find out the latest on power tabs, guitar tutorials and more.allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.comBlogger114125tag:blogger.com,1999:blog-28292149.post-14755936387035822732008-01-01T13:09:00.000-08:002008-01-01T13:12:23.901-08:00Happy 2008Happy new year everyone! Be looking for some interface updates this year. We are also planning to restructure the site with bread crumbs, and other stuff that will make it easier for navigation. Hopefully we might see pte 2.0?<br /><br />As always if you have any questions or suggestions, leave a post in the comments.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-1475593638703582273?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com2tag:blogger.com,1999:blog-28292149.post-20584602765083515492007-11-12T08:15:00.000-08:002007-11-12T08:27:02.981-08:00RE: Extracting Song Information With The ParserThis is in response to a comment left about the php ptparser. Parsing power tab song info and displaying it is pretty easy. See the following code below for example.<br /><br /><br /><pre name="code" class="php"><br /><br /><?php<br /><br /> require_once "powertabdocument.php";<br /><br /> $ptb = new PowerTabDocument ();<br /><br /> $ptb->Load ("powertabfile.ptb");<br /><br /> // Example see more functions below:<br /> $ptb->GetHeader()->GetSongArtist();<br /><br /> // GetLessonAuthor()<br /> // GetLessonCopyright()<br /> // GetLessonLevel()<br /> // GetLessonMusicStyle()<br /> // GetLessonNotes()<br /> // GetLessonSubtitle()<br /> // GetLessonTitle()<br /> // GetSongArranger()<br /> // GetSongArtist()<br /> // GetSongAudioReleaseTitle()<br /> // GetSongAudioReleaseType()<br /> // GetSongAudioReleaseYear()<br /> // GetSongAuthorType()<br /> // GetSongBassScoreNotes()<br /> // GetSongBassScoreTranscriber()<br /> // GetSongBootlegDate()<br /> // GetSongBootlegTitle()<br /> // GetSongComposer()<br /> // GetSongContentType()<br /> // GetSongCopyright()<br /> // GetSongGuitarScoreNotes()<br /> // GetSongGuitarScoreTranscriber()<br /> // GetSongLyricist()<br /> // GetSongLyrics()<br /> // GetSongReleaseTitle()<br /> // GetSongReleaseType()<br /> // GetSongTitle()<br /><br />?><br /><br /></pre><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-2058460276508351549?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com2tag:blogger.com,1999:blog-28292149.post-70955770738880615942007-11-11T10:57:00.000-08:002007-11-11T11:01:08.418-08:00Let it Snow! Let it Snow! Let it Snow!The Holidays are coming! We've updated the main page chock full of Christmas tabs, and a snowy interface. Enjoy! ... and Happy Holidays!<br /><br />-apt<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-7095577073888061594?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-78675587859326148462007-09-29T10:59:00.000-07:002007-09-29T11:01:43.561-07:00Updates are ComingBe looking for updates in the next couple of days. We've had to re-sync our DBs with our mother site. Thanks for your patience.<br /><br />-apt<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-7867558785932614846?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-26740295322624023542007-08-22T12:35:00.000-07:002007-08-22T12:44:51.797-07:00Convert MusicXML to Power TabsHere's a source snippet that will allow you to convert "P1" of a MusicXML score to a power tab file. This is just an example of what you can do with the php power tab classes. Keep in mind, you must have the <a href="http://code.google.com/p/phppowertabparser/downloads/list">latest version</a> of the PHP ptparser for this to work.<br /><br />The score will look funny when you open it. <span style="font-weight:bold;">Run the score polisher</span>. This will make it readable.<br /><br />Hopefully this will inspire someone to make a complete converter.<br /><br /><br /><pre name="code" class="php"><br /><br /><?<br /><?php<br /><br />require_once "powertabdocument.php";<br /><br /><br />$ptb = new PowerTabDocument ();<br /><br /><br />$durArr = array('64th'=>64, '32nd'=>32, '16th'=>16,'eighth'=>8, 'quarter'=>4, 'half'=>2, 'whole'=>1);<br /><br />$ptb->Load ("BlankPowerTabFile.ptb");<br />$guitarScore = &$ptb->GetGuitarScore();<br /><br />$sxe = simplexml_load_file("music.xml");<br /><br />$s = -1;<br />$measureCt = 3;<br /><br />foreach ($sxe->part->measure as $measure) {<br /> <br /> if ($measureCt > 1) {<br /> $guitarScore->m_systemArray[++$s] = new System;<br /> $measureCt = 1;<br /> $p=0;<br /> }<br /> <br /> $firstStaff = &$guitarScore->GetSystem($s)->GetStaff(0);<br /> <br /><br /> foreach ($measure->note as $note) {<br /> <br /> $string = $note->notations->technical->string;<br /> $fret = $note->notations->technical->fret;<br /> $tied = $note->notations->tied["type"];<br /><br /> $dur = $durArr[(string) $note->type];<br /> <br /> if ( isset($string,$fret) ) {<br /> <br /> if (!$note->chord) {<br /> $thePosition = &$firstStaff->m_positionArray[0][$p]; <br /> $thePosition = new Position ();<br /> <br /> $thePosition->SetDurationType($dur);<br /> <br /> //$thePosition->SetPreviousBeamDurationType($prevDur);<br /> <br /> $prevDur = $dur;<br /> <br /> ++$p;<br /> }<br /> <br /> array_push($thePosition->m_noteArray,new Note($string-1, $fret) );<br /> <br /> if ($tied=="stop")<br /> $thePosition->m_noteArray[count($thePosition->m_noteArray) - 1]->SetTied();<br /> }<br /> <br /> <br /> }<br /> <br /> $barLines = &$guitarScore->GetSystem($s)->m_barlineArray;<br /> <br /> array_push($barLines,new Barline($p) );<br /> <br /> <br /> ++$measureCt;<br /><br /> <br />}<br /><br />$ptb->Save ("ConvertedFileName.ptb");<br /><br />?><br /><br /></pre><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-2674029532262402354?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-65829799785506361492007-08-09T19:02:00.000-07:002007-08-17T15:05:48.744-07:00PHP Power Tab Parser<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_Kf-TUl8DNHA/RrvY7y6eE1I/AAAAAAAAABk/PliEF65bN6s/s1600-h/powertab.gif"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp2.blogger.com/_Kf-TUl8DNHA/RrvY7y6eE1I/AAAAAAAAABk/PliEF65bN6s/s200/powertab.gif" alt="" id="BLOGGER_PHOTO_ID_5096905925090743122" border="0" /></a><br />We have just Written and Released a PHP Power Tab Parser. It is in beta, so please leave comments and report any bugs you may have.<br /><br /><div style="text-align: center;"><a href="http://code.google.com/p/phppowertabparser/downloads/list"><span style="font-size:130%;">>>Download Now<<</span></a><br /></div><br />This parser is a translation of Brad Larson's "ptparser." You must have <span style="font-weight: bold;">PHP v5</span> or better. This package will only read and write<span style="font-weight: bold;"> power tab v1.7</span> files. See the sample script below to get your feet wet. This will load a power tab file and watermark it with a line of text at the top of the guitar score. This script is great if you are serving up power tab file, and you don't want someone stealing your power tabs, and redistributing them.<br /><br /><div style="text-align: center;"><a style="font-weight: bold;" href="http://digg.com/programming/Create_Power_Tabs_With_PHP">Digg This!</a><br /></div><br /><pre name="code" class="php"><br /><br /><?<br /><br />require_once "powertabdocument.php";<br /><br /><br />$ptb = new PowerTabDocument ();<br /><br />$ptb->Load ("powertabfile.ptb"); // Open and Load Power Tab<br /><br />/* Water Mark File */<br /><br />$guitarScore = &$ptb->GetGuitarScore(); // get the guitar score<br /><br />$lastIndex = $guitarScore->GetFloatingTextCount(); // get the position of the last floating text element<br /><br />$waterMark = &$guitarScore->m_floatingTextArray[$lastIndex];<br /><br />$waterMark = new FloatingText ();<br /><br />$rect = array (50,3,230,17); // create a new coordinate element<br /><br />$waterMark->SetRect($rect);<br />$waterMark->SetText('File Downloaded @ AllPowerTabs.com');<br /><br />/* Done Water Marking File */<br /><br /><br />$ptb->Save ("powertabfile.ptb"); // Save Power Tab File<br /><br />?><br /></pre><br /><br /><br />We have a lot planned for the feature, so keep checking the blog.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-6582979978550636149?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com2tag:blogger.com,1999:blog-28292149.post-7241515718255392372007-07-06T09:20:00.000-07:002007-07-06T09:25:50.674-07:00Quick Site Update. Search Engine<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/Ro5s4ucNRNI/AAAAAAAAABc/YKQGC0pIyfA/s1600-h/search-clean.png"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/Ro5s4ucNRNI/AAAAAAAAABc/YKQGC0pIyfA/s320/search-clean.png" alt="" id="BLOGGER_PHOTO_ID_5084120751142683858" border="0" /></a><br />We have cleaned up the search results page to make it more legible. The font size has been decreased. The highlight function has been changed to bold.<br /><br />We have also improved the algorithm for spelling correction. (<span style="font-style: italic;">Did you mean?</span>)<br /><br />Hope this makes your search a little better and easier on the eyes.<br /><br />-apt<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-724151571825539237?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-29684545359615472522007-06-14T11:06:00.000-07:002007-06-14T11:10:06.345-07:00Amazing Teaspoon SliderCoetzee Hannes composes his own songs and learned to play the guitar on the side of the hill when the aloes were too dry to tap and to keep himself company on long, lonely nights in the mountains of the Kamiesberg. His right-hand finger picking style is called "optel en knyp" (which translated from Afrikaans, Hannes' home language, is "pick up and pinch") and combined with his unique teaspoon slide technique, he ranks as one of the most unusual slide guitarists in the world. If you shut your eyes, you would think that there were two people accompanying each other on guitars.<br /><br />- <a href="http://www.myspace.com/hannescoetzeeteaspoonslideguitarist">http://www.myspace.com/hannescoetzeeteaspoonslideguitarist</a><br /><br /><object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/1xPGqWt3L7A"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/1xPGqWt3L7A" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-2968454535961547252?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-80337298169039642822007-06-11T07:29:00.000-07:002007-06-11T07:40:32.664-07:00Java, PHP Power Tab Parsers Made Open SourceAccording to the power tab developer's group, a user has released a Java parser for the power tab file format.<br /><blockquote><a href="http://www.beaglebuddy.com/ptb">Download Here</a><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_Kf-TUl8DNHA/Rm1ehnmYvVI/AAAAAAAAABM/4-B9GNFbEe4/s1600-h/logo_sun_small_sdn.gif"><img style="cursor: pointer;" src="http://bp1.blogger.com/_Kf-TUl8DNHA/Rm1ehnmYvVI/AAAAAAAAABM/4-B9GNFbEe4/s400/logo_sun_small_sdn.gif" alt="" id="BLOGGER_PHOTO_ID_5074816286775098706" border="0" /></a></blockquote>We have also chosen to make our efforts open source. You may download our attempts to convert the parser files from C to PHP. Hope this helps any programmers out there, trying to write applications for the power tab files. Keep in mind, these classes are incomplete, but show a great example of how to convert the languages.<br /><a href="http://www.allpowertabs.com/tools/phpptparser.zip"><blockquote>Download Here<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/Rm1eoHmYvWI/AAAAAAAAABU/xPyc95OTeGo/s1600-h/php_xpstyle_ico.gif"><img style="cursor: pointer;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/Rm1eoHmYvWI/AAAAAAAAABU/xPyc95OTeGo/s400/php_xpstyle_ico.gif" alt="" id="BLOGGER_PHOTO_ID_5074816398444248418" border="0" /></a></blockquote></a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-8033729816903964282?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-39963710399383449582007-05-01T09:36:00.000-07:002007-05-01T12:24:18.371-07:00Small Update - New Column Added to Artist Page<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/RjduRan9dpI/AAAAAAAAABE/69CNIz59_kg/s1600-h/new-col.gif"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/RjduRan9dpI/AAAAAAAAABE/69CNIz59_kg/s400/new-col.gif" alt="" id="BLOGGER_PHOTO_ID_5059633951857800850" border="0" /></a><br /><span style="font-size:130%;">We've added <span style="font-weight: bold;">album titles</span> and <span style="font-weight: bold;">year</span>s to the artist pages. You can also <span style="font-weight: bold;">"Sort"</span> the columns by clicking on the header. Enjoy!</span><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-3996371039938344958?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-29338209775783267942007-04-25T13:10:00.000-07:002007-04-25T13:17:09.929-07:00Something New is on the Horizon<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_Kf-TUl8DNHA/Ri-2Qqn9doI/AAAAAAAAAA8/mmg6C88dPyE/s1600-h/shadow_back.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_Kf-TUl8DNHA/Ri-2Qqn9doI/AAAAAAAAAA8/mmg6C88dPyE/s320/shadow_back.png" alt="" id="BLOGGER_PHOTO_ID_5057461303996413570" border="0" /></a>The webmasters of AllPowertabs.com have just released a new "Top Site." If you own a guitar related website, you may register by visiting <a href="http://www.topguitartabsites.com/register">this link</a>.<br /><br />Taken from the site:<br /><blockquote><h3>How Are We Different From Other Top Sites?</h3> <ol><li>Design and coding are handcrafted . <ul><li>We don't use pre-fabricated software. The code is more optimized and new features can be added at any time.</li><li>HTML code is XHTML compliant.</li><li>Graphics are optimized for better browsing experience. </li></ul> </li><li>We get personal with our site owners. <ul><li>Suggestions and contributions are always considered.</li></ul> </li><li>No annoying advertisements or pop-ups <ul><li>We believe this is a poor way to treat a site visitor</li></ul> </li><li>"Lamer" proof <ul><li>We hate cheaters just as much as you do. That's why we employ CAPTCHA's.</li></ul> </li><li>Consideration for the "little guy" <ul><li>There are sites that don't receive that much traffic, so they won't always be at the top of the list. That's why we have created "tags." Site owners may submit tags for their site that will randomly be shown every build.</li></ul> </li><li>SEO - "Search Engine Optimized" <ul><li>Besides being compliant with w3 standards, we treat our topsites with special recognition.</li><li>The "number one" site is treated with a special "H1 tag" ... The "number two" site is treated with a "H2 tag" ... etc </li><li>We have implemented tags to increase keyword recognition for search engines. </li></ul> </li></ol></blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-2933820977578326794?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-52626593207594517212007-03-28T07:29:00.000-07:002007-03-28T07:37:44.191-07:00Rodrigo Y Gabriela ... Nylon Bliss<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/Rgp9eNmX_3I/AAAAAAAAAAw/fGCeLUBNRRA/s1600-h/3.jpg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/Rgp9eNmX_3I/AAAAAAAAAAw/fGCeLUBNRRA/s200/3.jpg" alt="" id="BLOGGER_PHOTO_ID_5046984290422226802" border="0" /></a><br />We just wanted to make a quick recommendation for tabbing / listening. Check out Rodrigo Y Gabriela. You will not be disappointed. <a href="http://easylink.playstream.com/ato_records/tamacun_hi.wax">Listen to Tamacun</a>. Official <a href="http://www.myspace.com/rodrigoygabriela">Myspace with audio</a><br />(Their new CD comes with a DVD guitar lesson.)<br /><br />ATO Records:<br /><blockquote>Rodrigo (Sanchez) and Gabriela (Quintero) are two fast-fingered, Dublin-based, Mexicans with a unique sound created on acoustic guitars. Their music is difficult to define, straddling both world and rock, and often imbued with timeless Hispano--classical influences. The fire in it comes from their life-long passion for metal music. This spring, Rodrigo y Gabriela beat both the Arctic Monkeys AND Johnny Cash to number one in the Irish charts.<br /><br />Rodrigo is a deft finger-picker who can move from raging speed to sensual soul in the space of a fret, while Gabriela employs fast, rhythmic techniques. Her percussionist's thrashing of strings and drumming of the instrument's body inevitably raises comparisons with flamenco -- which they acknowledge as an influence but swerve as a pigeonhole. The duo's repertoire flies beyond familiar Latin folk guitarists' styles because of the metal connection: their re-workings of Led Zeppelin's 'Stairway to Heaven' and Metallica's 'Orion' are musts, and the presence, on 'Ixtapa,' of the fiery Hungarian gypsy violinist, Roby Lakatos, is inspirational.</blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-5262659320759451721?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1581459390730492712007-03-24T10:25:00.000-07:002007-03-24T10:28:57.708-07:00Amazing Power TabEvery once and a while we try to take a break from being computer geeks and see what users have submitted. We came across <a href="http://allpowertabs.com/tabs/d/danny_elfman/spiderman_2_main_title_tab_23092.html">this power tab </a>the other day. Whether or not your a movie buff you'll definately appreciate the time that it took this user to put together this tab. Thanks "<a href="http://allpowertabs.com/member/925.html">Dodus</a>" and keep up the good work.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-158145939073049271?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-24719771329108366522007-02-07T08:43:00.000-08:002007-02-07T08:49:21.206-08:00How to Run The Power Tab Editor in Ubuntu with WinXP<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/RcoC_GrP0NI/AAAAAAAAAAk/UEltu1VPgxY/s1600-h/windows%2Bxp%2Bin%2Bqemu.png"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/RcoC_GrP0NI/AAAAAAAAAAk/UEltu1VPgxY/s320/windows%2Bxp%2Bin%2Bqemu.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5028835217059598546" /></a><br />For anyone who is wondering how to run the power tab editor in Linux <a href="https://help.ubuntu.com/community/WindowsXPUnderQemuHowTo">this might be a little help</a>.<br /><br />This guide explains how to install Windows XP on Ubuntu in QEmu In Dapper 6.06, Edgy 6.10 and Feisty 7.04.<br /><br />Rather than have an entire seperate Windows desktop, you can run programs directly on your Linux desktop using a program called 2X Application Server.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-2471977132910836652?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-76679005444629573292007-02-01T14:15:00.000-08:002007-02-01T14:21:40.882-08:00An OpenSource Guitar? The Linux Guitar Project<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_Kf-TUl8DNHA/RcJmx2rP0MI/AAAAAAAAAAY/jMqnxbALj3M/s1600-h/linuxguitar.jpg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp2.blogger.com/_Kf-TUl8DNHA/RcJmx2rP0MI/AAAAAAAAAAY/jMqnxbALj3M/s200/linuxguitar.jpg" alt="" id="BLOGGER_PHOTO_ID_5026693140775424194" border="0" /></a><a href="http://www.linuxguitar.org/">LinuxGuitar.org</a> writes ....<br /><blockquote>Linux guitar is a community effort to design and construct an extremely functional electric guitar powered by Linux.<br /></blockquote><br /><br />Check out the <a href="http://community.linux.com/community/07/01/31/1951219.shtml?tid=12">full story</a>.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-7667900544462957329?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-17685275230580269672007-01-24T10:38:00.000-08:002007-01-24T11:00:05.666-08:00Power Tab Editor v2.0 is still alive!<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_Kf-TUl8DNHA/Rbesl2rP0LI/AAAAAAAAAAM/xZChuHG7Bm4/s1600-h/power_16.gif"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_Kf-TUl8DNHA/Rbesl2rP0LI/AAAAAAAAAAM/xZChuHG7Bm4/s320/power_16.gif" alt="" id="BLOGGER_PHOTO_ID_5023673675687121074" border="0" /></a><br />There has been a lot of rumors and speculation as to whether or not the Power Tab Editor v 2.0 is still alive. Friends, be rest-assured that we heard first hand from Brad that:<br /><ol><li>The project is still alive</li><li>It is still being developed</li><li>No it isn't a ghost program</li></ol>Writing a program as big as PTE is kind of like writing a novel, except everything has to be correct down to the characters. There are many new features that need to implemented, and the advantage of having a single person developed these features, is that the code tends to be more coherent and optimized. So keep you eye's pealed for breaking news, because this version has been years in the making. When we hear anything, you will be the first to know.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-1768527523058026967?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-1167506780949185592006-12-30T11:17:00.000-08:002006-12-30T11:26:20.956-08:00How to Create Backing Tracks from Powertab FilesLong time no post. Hope everyone had a great holiday. Just wanted to let everyone know a new site is a-brew <span class="postbody"><a href="http://www.backingtrack.org/" target="_blank">http://www.backingtrack.org/</a>. If you like the idea, get involved. According to the site.<br /><br /></span><blockquote>backingtrack.org is a project of the Power Tab Community, aiming at creating high-quality guitar backing tracks with additional notation in Power Tab Format.</blockquote><br /><span style="font-weight: bold;font-size:130%;" >How To</span><br /><br />Making Backing Tracks From a .ptb file using Fruity Loops<br />- From <a href="http://forum.powertabs.net/viewtopic.php?p=314164&highlight=#314164">Golbez</a><br /><a href="http://forum.powertabs.net/viewtopic.php?p=314164&highlight=#314164"></a><span class="postbody"><br /></span><span class="postbody"><br />1) Open Power Tab Editor with the song you would like to convert into a backing track. <br /><br />2) In the upper left hand corner of the program, select File. Move down to Export. Choose MIDI File... Save it in a location you will be able to access shortly. After the file is saved, you can close Power Tab Editor.<br /><br />3) Open Fruity Loops. In the upper left hand corner of the program, select File. Move down to Import. Choose MIDI File... Choose the MIDI file you just saved, and select to import all tracks.<br /><br />4) The file opens as a window in the program, listing each instrument used as a track, however Fruity Loops assigns no instrument to each track. This is equivalent to having no "Guitar In" for PTE.<br /><br />5) In the Fruity Loops Browser on the left side of the program, expand the folder Channel Presets. If no browser is there, at the top, select View -> Browser (or press F8 ). Expand 3x Osc. This is where the bulk of the functional instruments are found. Through trial and error, sample the various instruments by dragging and dropping them onto the tracks of the window. You must play the file to hear the result.<br /><br />6) Once you have an instrument line-up that is satisfactory, go back to File and select Export. Choose MP3 File... and save it. Under the "MP3" tab, you can adjust the bitrate in Kbit (kilobites per second). 128 kb/s is standard CD quality and is loosely equivalent to 1 megabyte of information per minute of song. Select the Start button to finish your Backing Track.<br /><br />- Remember, these are backing tracks intended to omit the lead guitar role so that others may play along. Preferably, omit the lead guitar role by not adding an instrument to that track in the program.<br /><br />If you hear that your song is clipping (static noises due to multiple instruments/parts playing at once), click the FX button at the far top right of the program, and it'll open another window where you can adjust the master volume of the piece (far left slide bar), which will effect the final volume of the converted .mp3. Dropping the volume will reduce the clipping, and eventually eliminate it altogether.<br /><br />Finalize your submission and thanks for your efforts!</span><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/backing+track" rel="tag">backing track</a>, <a href="http://technorati.com/tag/back+track" rel="tag">back track</a>, <a href="http://technorati.com/tag/guitar+tracks" rel="tag">guitar tracks</a>, <a href="http://technorati.com/tag/guitar" rel="tag">guitar</a>, <a href="http://technorati.com/tag/bass" rel="tag">bass</a>, <a href="http://technorati.com/tag/tab" rel="tag">tab</a>, <a href="http://technorati.com/tag/tabs" rel="tag">tabs</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116750678094918559?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1166198093279775802006-12-15T07:50:00.000-08:002007-01-16T08:30:36.746-08:00Andy Mckee - DriftingHere's another amazing guitarist, Andy Mckee.<br /><br />Transcriptions available at <a href="http://www.andymckee.com/music.htm">his website</a>.<br /><br /><br /><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Ddn4MGaS3N4"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Ddn4MGaS3N4" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/andy+mckee" rel="tag">andy mckee</a>, <a href="http://technorati.com/tag/guitar" rel="tag">guitar</a>, <a href="http://technorati.com/tag/justin+king" rel="tag">justin king</a>, <a href="http://technorati.com/tag/slap+guitar" rel="tag">slap guitar</a>, <a href="http://technorati.com/tag/transcription" rel="tag">transcription</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116619809327977580?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-1165073321896032712006-12-02T07:25:00.000-08:002006-12-27T13:57:03.226-08:00A Clockwork Guitar<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/4139/2995/1600/203514/pc010420.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/4139/2995/320/219369/pc010420.jpg" alt="" border="0" /></a><br />User writes ...<br /><blockquote>I have a Fender US Highway One series Stratocaster, which is a half decent guitar, but looks just like a million other Strats. I had been planning to replace the pick guard with a black mother of pearl guard but my experiments in electrolytic etching made me think I'd like to try something a bit more unique. Thus the Steampunk Strat was born. </blockquote><br /><a href="http://steampunkworkshop.com/steampunk-strat.shtml">Link</a><br /><br /><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/fender" rel="tag">fender</a>, <a href="http://technorati.com/tag/guitar" rel="tag">guitar</a>, <a href="http://technorati.com/tag/highway+one+series" rel="tag">highway one series</a>, <a href="http://technorati.com/tag/pickguard" rel="tag">pickguard</a>, <a href="http://technorati.com/tag/body" rel="tag">body</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116507332189603271?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com2tag:blogger.com,1999:blog-28292149.post-1164515728627409172006-11-25T20:30:00.000-08:002006-11-25T20:35:28.626-08:00Christmas Guitar TabsThe Holidays are upon us. We've updated allpowertabs with a snowy interface. Be looking out for some other changes on the site to reflect the season. Find out how to play those <a href="http://allpowertabs.com/tabs/t/traditional_christmas/553.html">traditional Christmas tunes</a>. Also check out <a href="http://allpowertabs.com/tabs/b/bobby_helms/jingle_bell_rock_tab_14384.html">this classic</a>. (Jingle Bell Rock)<br /><br />apt<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116451572862740917?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1163891706184659662006-11-18T15:11:00.000-08:002006-11-18T15:15:06.186-08:00How Deep Is Your Love? - John Frusciante<a href="http://allpowertabs.com/tabs/r/red_hot_chili_peppers/123.html">Red Hot Chili Pepper</a>'s guitarist - <a href="http://allpowertabs.com/tabs/j/john_frusciante/1192.html">John Frusciante</a> hitting some crazy notes in this <a href="http://allpowertabs.com/tabs/b/bee_gees/424.html">Bee Gee</a>'s cover. <br /><br /><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/rxcrDfx5RkA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/rxcrDfx5RkA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/bee+gees" rel="tag">bee gees</a>, <a href="http://technorati.com/tag/john+frusciante" rel="tag">john frusciante</a>, <a href="http://technorati.com/tag/red+hot+chili+peppers" rel="tag">red hot chili peppers</a>, <a href="http://technorati.com/tag/guitar" rel="tag">guitar</a>, <a href="http://technorati.com/tag/tab" rel="tag">tab</a>, <a href="http://technorati.com/tag/tabs" rel="tag">tabs</a>, <a href="http://technorati.com/tag/powertabs" rel="tag">powertabs</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116389170618465966?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1163789978737072872006-11-17T10:57:00.000-08:002006-11-17T10:59:38.750-08:00Powertab Score Merger v1.0We have a little treat for our frequent readers. We have just released a powertab score merger. It isn't public yet, but we'd thought we would share it with you first! Enjoy<br /><br /><a href="http://www.allpowertabs.com/tools/score_merger/"><span style="font-size:130%;">Powertab Score Merger </span></a><br /><br /><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/Score+merger" rel="tag">Score merger</a>, <a href="http://technorati.com/tag/powertab" rel="tag">powertab</a>, <a href="http://technorati.com/tag/software" rel="tag">software</a>, <a href="http://technorati.com/tag/tools" rel="tag">tools</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116378997873707287?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1163477381731913962006-11-15T20:06:00.000-08:002006-11-15T07:58:28.803-08:00Nirvana Lithium - LiveNirvana playing Lithium back in the day. Video gives you a good shot of Kirt and his guitar.<br /><br /><a href="http://allpowertabs.com/tabs/n/nirvana/lithium_tab_110.html">Guitar Tab.</a><br /><br /><object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/_yWH0m7zDms"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/_yWH0m7zDms" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/Nirvana" rel="tag">Nirvana</a>, <a href="http://technorati.com/tag/Lithium" rel="tag">Lithium</a>, <a href="http://technorati.com/tag/Guitar" rel="tag">Guitar</a>, <a href="http://technorati.com/tag/Tab" rel="tag">Tab</a>, <a href="http://technorati.com/tag/Fend" rel="tag">Fend</a>, <a href="http://technorati.com/tag/Powertab" rel="tag">Powertab</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116347738173191396?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com1tag:blogger.com,1999:blog-28292149.post-1163545536155093022006-11-14T15:02:00.000-08:002006-11-14T15:05:36.156-08:00Get the Latest Powertabs Sent To Your Email!<a href="http://photos1.blogger.com/blogger/4139/2995/1600/Email%20Icon.0.jpg"><img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/4139/2995/320/Email%20Icon.jpg" border="0" /></a><br /><a href="http://photos1.blogger.com/blogger/4139/2995/1600/Email%20Icon.jpg"></a><br />Did you know that you can get the latest powertabs in you inbox? Always be up to date on the latest tabs!!<br /><br /><a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=477607"><span style="font-size:130%;">Click Here</span></a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116354553615509302?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0tag:blogger.com,1999:blog-28292149.post-1163477115320384652006-11-13T20:02:00.000-08:002006-11-13T20:05:15.320-08:00Scientists Invent "Air Guitar Shirt"Weird news, but cool ...<br /><br /> <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/uwvKGJXvHZA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/uwvKGJXvHZA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br /><div class="tag_list">Tags: <span class="tags"><a href="http://technorati.com/tag/air+guitar" rel="tag">air guitar</a>, <a href="http://technorati.com/tag/scientist" rel="tag">scientist</a>, <a href="http://technorati.com/tag/invent" rel="tag">invent</a></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28292149-116347711532038465?l=blog.allpowertabs.com'/></div>allpowertabshttp://www.blogger.com/profile/13960648207213073252noreply@blogger.com0