<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>PCF Testing</title>
	<atom:link href="http://pculture.org/devblogs/mirotesting/feed/" rel="self" type="application/rss+xml" />
	<link>http://pculture.org/devblogs/mirotesting</link>
	<description></description>
	<pubDate>Fri, 24 Jun 2011 13:47:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Using Sikuli to Automate Miro Testing</title>
		<link>http://pculture.org/devblogs/mirotesting/2011/06/24/using-sikuli-to-automate-miro-testing/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2011/06/24/using-sikuli-to-automate-miro-testing/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 13:47:10 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[qa]]></category>

		<category><![CDATA[sikuli]]></category>

		<category><![CDATA[test automation]]></category>

		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=299</guid>
		<description><![CDATA[This will be the first of a few posts using Sikuli for automated testing of Miro and Miro Video Converter, mainly because I am in love with the Sikuli Project, have been learning tons as I work on this, and hope others will want to use the test suites to contribute to PCF testing, and [...]]]></description>
			<content:encoded><![CDATA[<p>This will be the first of a few posts using Sikuli for automated testing of Miro and Miro Video Converter, mainly because I am in love with the <a href="http://sikuli.org">Sikuli Project</a>, have been learning tons as I work on this, and hope others will want to use the test suites to contribute to PCF testing, and perhaps help create some.</p>
<h3>Background</h3>
<p>I first heard about the <a href="http://sikuli.org/">Sikuli Project</a> from one of our developers in Jan 2010, right after we had purchased a 1 year license for Eggplant.   It was with a heavy-heart that we had decided to go with single node license of the expensive and proprietary tool, but we needed something.</p>
<p>The early releases of Sikuli were cool, but were missing what I considered a critical feature, text recognition.  The 0.10.2 release in August 2010 showed some promise and we decided that we would not renew the Eggplant license at the end of 2010, but instead commit to reworking the automated tests to use Sikuli.</p>
<p>The Sikuli-X release series introduces a ton of new features and improvements including text recognition and way to run setup the tests as python unittest suites, making the dream of an easily maintainable, cross-platform automation test suite a reality.</p>
<h3>Some Advantages of using Sikuli over other tools</h3>
<p>As I continue to work on creating the Miro test suites, I am hugely grateful to the team that makes Sikuli, I think they have done a fine job with the application, documentation and support.   When I compare it to my previous experiences with using Eggplant,  it&#8217;s wins all comparisons.  For example:</p>
<p>1. Licensing and Sharing: Sikuli Script and Sikuli IDE are both released under <a href="http://sikuli.org/LICENSE">the MIT License</a>. The app and our tests can be used by anyone who wants to <a href="http://develop.participatoryculture.org/index.php/TestAutomation#Sikuli_Testing_Setup_Instructions">try them</a>. With Eggplant I was the only person able to use the license, locked to a specific machine and os. If my internet connection went off during a test run, the license checker would fail and my tests would crash out.  An extra hassle that nobody really needs.</p>
<p>2. Language:  While they provide a GUI for screen capture, I think the real advantage lies in the command-line tool.  With that, you can create tests in a real language. For both the Miro automation project and other PCF web projects that use selenium-rc, I&#8217;ve been learning the basics of python.  With the tests set up as python unittests, it&#8217;s pretty simple to create easily maintainable tests from re-usable parts.  At the same time learning something that&#8217;s useful beyond this particular task.</p>
<p>3. Text Recognition coolness:  Since Miro uses native widgets and testing miro requires adding a lot of different feeds and finding items, solid text recognition is the most important feature to me. Creating a screenshot for each feed, for each os, would be a nightmare.  And having to define text styles for each size, font, style, os as you do with Eggplant is equally tedious.  Sikuli uses the <a href="http://opencv.willowgarage.com/wiki/">opencv library</a>, and in general it just works.  There are a few instances where some fonts or sizes are harder to find, but it was pretty simple to work around those cases for the miro tests.</p>
<p>4. Support and Documentation:  When I ran into some issues with RC1 of Sikuli-X - I filed a bug and got some immediate feedback.  The bug itself was a blocker for me, and the developer actually provided me with a special build to work around the issue until RC2 was released. I love that!  The <a href="http://sikuli.org/docx">documentation</a> is clear, readable and accessible.</p>
<h3>The Miro Test Suites</h3>
<p>The test suites for Sikuli testing assume that you are using Sikuli X  1.0 (rc2 or later) and are designed around the instructions from the <a class="external text" rel="nofollow" href="http://sikuli.org/docx/faq/command-line.html">How to Run Sikuli from the Command line</a> page, section <strong>Running sikuli-script.jar from Command line</strong>. All the tests are available in a <a href="https://github.com/PCF-qa/miro">git-hub repository</a> under the PCF-qa project.  And documentation in on the PCF wiki, <a href="http://develop.participatoryculture.org/index.php/MiroTestAutomation">Miro Test Automation page</a>.</p>
<p>Right now, there is a quick-test run that takes care of about general build checkout to make sure all the parts and pieces are in order, and takes about 30 minutes to run.  If you choose to run all the tests, it takes about 3 hours for the tests to complete.</p>
<p>I&#8217;m still actively working on adding tests to improve coverage, but it should be possible to run tests on Windows, Ubuntu and OS X (10.6 or 10.7) and get some meaningful results.</p>
<h3>Summary</h3>
<p>This post is mainly my way to say Thank You! to the Sikuli team, as I think their tool is fabulous.  Anyone who wants to try out the Miro tests is welcome to give it a shot.  This has been a great learning experience for me so far  - so if you see places where the tests can be improved, please let me know or send a patch.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2011/06/24/using-sikuli-to-automate-miro-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Miro 4.0.2 Release Candidate Builds</title>
		<link>http://pculture.org/devblogs/mirotesting/2011/06/23/miro-402-release-candidate-builds/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2011/06/23/miro-402-release-candidate-builds/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:05:51 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=294</guid>
		<description><![CDATA[We have posted RC1 builds for Miro 4.0.2 on the nightly builds page.  You can download builds for:

 windows
 osx
for source builds or an update to the ubuntu testing ppa - please harass bendk on irc #miro-hackers

This is a bug-fix release that contains some performance improvements and a few subtle enhancements.   You can see the [...]]]></description>
			<content:encoded><![CDATA[<p>We have posted RC1 builds for Miro 4.0.2 on the <a href="http://nightlies.pculture.org/">nightly builds page</a>.  You can download builds for:</p>
<ul>
<li> <a href="http://nightlies.pculture.org/Miro-4.0.2-rc1.exe">windows</a></li>
<li> <a href="http://nightlies.pculture.org/Miro-4.0.2-rc1.dmg">osx</a></li>
<li>for source builds or an update to the ubuntu testing ppa - please harass bendk on irc #miro-hackers</li>
</ul>
<p>This is a bug-fix release that contains some performance improvements and a few subtle enhancements.   You can see the list in the <a href="http://develop.participatoryculture.org/index.php/4.0ReleaseNotes">draft release notes</a>.</p>
<p>In general there are a number of fixes and performance tweaks related to the feed updating and audio playback when there are a large number of feeds and watched folders.</p>
<p>We&#8217;ve also fixed the issue of the .miro file getting written to connected drives on windows and have fixed some database issues.</p>
<p>Any help you can provide with testing these builds is greatly appreciated.  For how you can help&#8230;<span id="more-294"></span></p>
<h3>Bugzilla information (Fixed / Open / Create)</h3>
<ul>
<li><a href="http://bugzilla.pculture.org/buglist.cgi?query_format=advanced&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;resolution=FIXED&amp;target_milestone=4.0.2&amp;product=Miro">Miro 4.0.2 Fixed bugs</a></li>
<li> <a href="http://bugzilla.pculture.org/roadmap.cgi?product=Miro&amp;target=4.0.2">Miro 4.0.2</a> – all bugs open and closed</li>
<li><a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro&amp;version=4.0.2">Submit a new bug</a></li>
</ul>
<h3>Litmus Testing</h3>
<p>1. Go to <a href="http://litmus.pculture.org/run_tests.cgi">litmus.pculture.org</a> and sign in or create an account if you don’t already have one.<br />
2. Select the recommended test run for Miro 4.0.2 RC Testing<br />
3. Select your OS configuration and start running tests from the groups that are listed.<br />
4. For each test that you run, please mark it pass / fail / unclear. Don’t worry if you can’t run all the tests.<br />
5. If you encounter an error, please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">file a bug</a> and provide the bug number in the results and a quick description in the comments.</p>
<h3>Extra info</h3>
<ul>
<li>Please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">post a bug</a> for any issues you find, it’s the fastest way for it to  get attention.</li>
<li>Please read <a href="http://develop.participatoryculture.org/index.php/GoodBugReports">Good Bug Reports </a>for bug guidelines</li>
<li>If you are new to testing you can check out our <a href="../2011/05/20/2011/05/02/getting-started-guide-for-new-testers/">getting started guide</a></li>
<li>If your time is limited, doing the 10 short tests in the Quicktest will be immensely helpful.</li>
<li><a href="http://litmus.pculture.org/test_run_report.cgi?test_run_id=62">Track the testing progress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2011/06/23/miro-402-release-candidate-builds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Help with Miro 4.0</title>
		<link>http://pculture.org/devblogs/mirotesting/2011/05/20/how-to-help-with-miro-40/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2011/05/20/how-to-help-with-miro-40/#comments</comments>
		<pubDate>Sat, 21 May 2011 01:23:01 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<category><![CDATA[streaming]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=286</guid>
		<description><![CDATA[Miro 4, Release Candidate 2 builds are available, and if you would like to contribute, here is how you can help:
1. Download the build for your operating system: windows, os x, or source 
2. Connect your Android or USB device, and import and sync your files.
3. Play all your music. Make dynamic playlists and shuffle [...]]]></description>
			<content:encoded><![CDATA[<p>Miro 4, Release Candidate 2 builds are available, and if you would like to contribute, here is how you can help:</p>
<p>1. Download the build for your operating system: <a href="http://nightlies.pculture.org/Miro-4.0-rc2.exe">windows</a>, <a href="http://nightlies.pculture.org/Miro-4.0-rc2.dmg">os x</a>, or <a href="http://nightlies.pculture.org/miro-4.0-rc2.tar.gz">source </a></p>
<p>2. Connect your Android or USB device, and import and sync your files.</p>
<p>3. Play all your music. Make dynamic playlists and shuffle through.</p>
<p>4. Try out the home-sharing feature. Stream or download music and videos on your local network.</p>
<p>5. Tell us what happens, comment here, or <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">file a bug</a>.</p>
<p>6. Help <a href="https://translations.launchpad.net/democracy">update the translations</a>.</p>
<p>For more in-depth testing, here are the regression testing details:</p>
<p><span id="more-286"></span></p>
<h2>Please help us test.</h2>
<p>This is a beta build and we know there are some more bugs to fix, help us find the ones we don’t know about yet.</p>
<h3>Bugzilla information (Fixed / Open / Create)</h3>
<ul>
<li><a href="http://bugzilla.pculture.org/buglist.cgi?query_format=advanced&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;resolution=FIXED&amp;target_milestone=4.0&amp;product=Miro">Miro 4.0 Fixed bugs</a></li>
<li> <a href="http://bugzilla.pculture.org/roadmap.cgi?product=Miro&amp;target=4.0">Miro 4.0</a> – all bugs open and closed</li>
<li><a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro&amp;version=4.0">Submit a new bug</a></li>
</ul>
<h3>Litmus Testing</h3>
<p>1. Go to <a href="http://litmus.pculture.org/run_tests.cgi">litmus.pculture.org</a> and sign in or create an account if you don’t already have one.<br />
2. Select the recommended test run for Miro 4.0 Beta and RC Testing<br />
3. Select your OS configuration and start running tests from the groups that are listed.<br />
4. For each test that you run, please mark it pass / fail / unclear. Don’t worry if you can’t run all the tests.<br />
5. If you encounter an error, please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">file a bug</a> and provide the bug number in the results and a quick description in the comments.</p>
<h3>Extra info</h3>
<ul>
<li>Please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">post a bug</a> for any issues you find, it’s the fastest way for it to  get attention.</li>
<li>Please read <a href="http://develop.participatoryculture.org/index.php/GoodBugReports">Good Bug Reports </a>for bug guidelines</li>
<li>If you are new to testing you can check out our <a href="../2011/05/02/getting-started-guide-for-new-testers/">getting started guide</a></li>
<li>If your time is limited, doing the 10 short tests in the Quicktest will be immensely helpful.</li>
<li><a href="http://litmus.pculture.org/test_run_report.cgi?test_run_id=59">Track the testing progress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2011/05/20/how-to-help-with-miro-40/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Miro 4 - Beta available for testing!</title>
		<link>http://pculture.org/devblogs/mirotesting/2011/05/02/miro-4-beta-available-for-testing/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2011/05/02/miro-4-beta-available-for-testing/#comments</comments>
		<pubDate>Mon, 02 May 2011 13:35:26 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<category><![CDATA[audio]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=272</guid>
		<description><![CDATA[This weekend we put out a Beta build for Miro 4.  There are some amazing new features and bug fixes!  Please download a copy and help us test it.
os x &#124; windows &#124; source
Have an Android or Blackberry device? Help us add support for your device by filling out the form at http://bit.ly/mirodevicehelp. 
Rock out [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend we put out a Beta build for Miro 4.  There are some amazing new features and bug fixes!  Please <a href="http://nightlies.participatoryculture.org">download a copy</a> and help us test it.</p>
<h3 style="text-align: center"><a href="http://nightlies.pculture.org/Miro-4.0-beta1.dmg">os x</a> | <a href="http://nightlies.pculture.org/Miro-4.0-beta1.exe">windows</a> | <a href="http://nightlies.pculture.org/miro-4.0-beta1.tar.gz">source</a></h3>
<p>Have an Android or Blackberry device? Help us add support for your device by filling out the form at <a href="http://bit.ly/mirodevicehelp">http://bit.ly/mirodevicehelp</a>. </p>
<h2>Rock out your tunes with our sweet UI</h2>
<ul>
<li>Share with other Miro Libraries on your local network</li>
<li>Sync devices and copy media</li>
<li>More ways to make playlists</li>
<li>View the playback and download history</li>
<li>Improved searching and organization of your music</li>
<li>Easier ways to add music and video to your collection</li>
<li>UI Navigation with the keyboard</li>
<li>Better performance</li>
</ul>
<p>It&#8217;s cleaner, clearer, simpler and faster!!!  </p>
<h2>Please help us test. </h2>
<p>This is a beta build and we know there are some more bugs to fix, help us find the ones we don&#8217;t know about yet.</p>
<h3>Bugzilla information (Fixed / Open / Create)</h3>
<ul>
<li><a href="http://bugzilla.pculture.org/buglist.cgi?query_format=advanced&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;resolution=FIXED&amp;target_milestone=4.0&amp;product=Miro">Miro 4.0 Fixed bugs</a></li>
<li> <a href="http://bugzilla.pculture.org/roadmap.cgi?product=Miro&amp;target=4.0">Miro 4.0</a> – all bugs open and closed</li>
<li><a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro&amp;version=4.0">Submit a new bug</a></li>
</ul>
<h3>Litmus Testing</h3>
<p>1. Go to <a href="http://litmus.pculture.org/run_tests.cgi">litmus.pculture.org</a> and sign in or create an account if you don’t already have one.<br />
2. Select the recommended test run for Miro 4.0 Beta and RC Testing<br />
3. Select your OS configuration and start running tests from the groups that are listed.<br />
4. For each test that you run, please mark it pass / fail / unclear. Don’t worry if you can’t run all the tests.<br />
5. If you encounter an error, please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">file a bug</a> and provide the bug number in the results and a quick description in the comments.</p>
<h3>Extra info</h3>
<ul>
<li>Please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">post a bug</a> for any issues you find, it’s the fastest way for it to  get attention.</li>
<li>Please read <a href="//develop.participatoryculture.org/index.php/GoodBugReports">Good Bug Reports </a>for bug guidelines</li>
<li>If you are new to testing you can check out our <a href="../getting-started-guide-for-new-testers/">getting started guide</a></li>
<li>If your time is limited, doing the 10 short tests in the Quicktest will be immensely helpful.</li>
<li><a href="http://litmus.pculture.org/test_run_report.cgi?test_run_id=59">Track the testing progress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2011/05/02/miro-4-beta-available-for-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Miro 3.5 Release Candidate Testing</title>
		<link>http://pculture.org/devblogs/mirotesting/2010/09/24/miro-35-release-candidate-testing/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2010/09/24/miro-35-release-candidate-testing/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 00:33:05 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=255</guid>
		<description><![CDATA[Please help us test the release candidate builds for Miro 3.5.  ]]></description>
			<content:encoded><![CDATA[<h2>Miro 3.5 RC builds are available</h2>
<ul>
<li><a href="http://nightlies.pculture.org/Miro-3.5-rc2.dmg">OS X  (3.5-rc2)</a></li>
<li><a href="http://nightlies.pculture.org/Miro-3.5-rc2.exe">Windows (3.5-rc2)</a></li>
<li><a href="http://nightlies.pculture.org/miro-3.5-rc2.tar.gz">Source (3.5-rc2)</a></li>
</ul>
<h2>What&#8217;s New</h2>
<p>Miro 3.5 brings some key enhancements and bug fixes:</p>
<ul>
<li>Video Conversions (think <a href="http://mirovideoconverter.com">MVC</a> with batch processing)</li>
<li>Fixed Proxy support</li>
<li>Preference to specify font and encoding for subtitles</li>
<li>Preference to select display language</li>
<li>Better management of queued downloads</li>
</ul>
<p><strong>View the <a href="https://develop.participatoryculture.org/trac/democracy/wiki/3.5ReleaseNotes">Release Notes</a> for complete change information.</strong></p>
<hr />
<h2>Bugzilla information (Fixed / Open / Create)</h2>
<ul>
<li><a href="http://bugzilla.pculture.org/buglist.cgi?query_format=advanced&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;resolution=FIXED&amp;target_milestone=3.5&amp;product=Miro">Miro 3.5 Fixed bugs</a></li>
<li> <a href="http://bugzilla.pculture.org/roadmap.cgi?product=Miro&amp;target=3.5">Miro 3.5</a> – all bugs open and closed</li>
<li><a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro&amp;version=3.5">Submit a new bug</a></li>
</ul>
<h2>Litmus Testing</h2>
<p>1. Go to <a href="http://litmus.pculture.org/run_tests.cgi">litmus.pculture.org</a> and sign in or create an account if you don’t already have one.<br />
2. Select the recommended test run for Miro 3.5 Release Candidate Testing<br />
3. Select your OS configuration and start running tests from the groups that are listed.<br />
4. For each test that you run, please mark it pass / fail / unclear. Don’t worry if you can’t run all the tests.<br />
5. If you encounter an error, please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">file a bug</a> and provide the bug number in the results and a quick description in the comments.</p>
<h2>Extra info</h2>
<ul>
<li>Please <a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">post a bug</a> for any issues you find, it’s the fastest way for it to  get attention.</li>
<li>Here is a <a href="https://landfill.bugzilla.org/bugzilla-3.6-branch/page.cgi?id=bug-writing.html">nice clear guide</a> to submitting bugs</li>
<li>If you are new to testing you can check out our <a href="http://pculture.org/devblogs/mirotesting/getting-started-guide-for-new-testers/">getting started guide</a></li>
<li>If your time is limited, doing the 10 short tests in the Quicktest will be immensely helpful.</li>
<li><a href="http://litmus.pculture.org/test_run_report.cgi?test_run_id=45">Track the testing progress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2010/09/24/miro-35-release-candidate-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Features available with Miro 3.0</title>
		<link>http://pculture.org/devblogs/mirotesting/2010/02/15/new-features-available-with-miro-30/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2010/02/15/new-features-available-with-miro-30/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:46:46 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<category><![CDATA[Miro]]></category>

		<category><![CDATA[miro testing]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=213</guid>
		<description><![CDATA[* Updated links for Miro 3.0 - Release Candidate 3
Miro 3.0 Release Candidate 3 is now available on the nightly builds page for testing:

windows,
mac,
source.

Here&#8217;s a quick rundown of some of the new features and how they work.
Subtitles
Whether embedded or external, subtitles display be enabled and disabled during playback.  The feature is implemented for all [...]]]></description>
			<content:encoded><![CDATA[<p>* Updated links for Miro 3.0 - Release Candidate 3</p>
<p><strong>Miro 3.0 Release Candidate 3 </strong>is now available on the nightly builds page for testing:</p>
<ul>
<li><a href="http://participatoryculture.org/nightlies/Miro-3.0-rc3.exe">windows</a>,</li>
<li><a href="http://participatoryculture.org/nightlies/Miro-3.0-rc3.dmg">mac</a>,</li>
<li><a href="http://participatoryculture.org/nightlies/miro-3.0-rc3.tar.gz">source</a>.</li>
</ul>
<p>Here&#8217;s a quick rundown of some of the new features and how they work.</p>
<h2>Subtitles</h2>
<p>Whether embedded or external, subtitles display be enabled and disabled during playback.  The feature is implemented for all operating systems and more <a href="https://develop.participatoryculture.org/trac/democracy/wiki/SubtitleImplementationDetails">technical details</a> are available.</p>
<p>To display embedded or sidecar subtitle files:</p>
<ol>
<li>Start playback on a video file.</li>
<li>Click the Playback -&gt; Subtitles menu, or the Subtitles icon on the playbar.</li>
<li>Available languages or tracks are displayed for selection.</li>
<li>Choose the file and subtitles will display.</li>
</ol>
<p><a href="http://pculture.org/devblogs/mirotesting/files/2010/02/picture-2.png"><img class="alignleft size-medium wp-image-215" src="http://pculture.org/devblogs/mirotesting/files/2010/02/picture-2-300x203.png" alt="" width="300" height="203" /></a></p>
<p>To choose a subtitle file from a location on your system:</p>
<ol>
<li>Start playback on a video file.</li>
<li>Click the Playback -&gt; Subtitles menu, or the Subtitles icon on the playbar.</li>
<li>Choose the<em> Select a Subtitles Files</em>&#8230; option and browse to the subtitle file.</li>
<li>While you are looking for the file, playback will pause, and resume when the selection is made.</li>
</ol>
<p>There is also a global preference available to automatically display or disable subtitle files.</p>
<h2>Edit Cataloged Items</h2>
<p>Users are now provided with greater control over how items are displayed in the Library.  This is useful to change titles, provide better descriptions or change the audio or video classification.  To edit an item:</p>
<ol>
<li>Select the item</li>
<li>From the File (Video) menu, select Edit Item, or right-click and select Edit Item from the context menu.</li>
<li>In the Edit item dialog, you can modify title, description, and whether it should be treated as  video, audio or other for playback purposes.</li>
<li>The full path to the item on your system is displayed in the dialog.</li>
<li>Lastly, files can be dragged and dropped between the Video, Audio and Other sections of the library.  This will automatically change it&#8217;s setting for playback purposes.</li>
</ol>
<h2>Play file with an external player</h2>
<p>This long requested feature, useful for advanced users and people who prefer an additional playback option was implemented by a contributor. Special thanks go to Jason Woofenden.  To use an external player:</p>
<ol>
<li>Right-click on an item, and select <em>Play Externally</em> from the context menu.</li>
<li>The item will be opened with the system default player for that file type.</li>
</ol>
<p>There is also a global preference available under the Playback settings to always use an external player.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2010/02/15/new-features-available-with-miro-30/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parlez-vous&#8230; Sprechen Sie&#8230; Parlate&#8230; Govoriš li&#8230;</title>
		<link>http://pculture.org/devblogs/mirotesting/2010/02/05/parlez-vous-sprechen-sie-parlate-govoris-li/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2010/02/05/parlez-vous-sprechen-sie-parlate-govoris-li/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 19:33:17 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=205</guid>
		<description><![CDATA[If so, you will most certainly want to take a look at Release Candidate 1 for Miro 3.0.  Miro-3.0-rc1 is now available for testing on Windows, Mac and Linux.
We have fixed about a zillion bugs and have implemented some great features such as:

Support For Subtitles; embedded, co-located or browse toanywhere on your system.
Item Metadata Editing; [...]]]></description>
			<content:encoded><![CDATA[<p>If so, you will most certainly want to take a look at <strong>Release Candidate 1 for Miro 3.0</strong>.  Miro-3.0-rc1 is now available for testing on <a href="http://pculture.org/nightlies/Miro-3.0-rc1.exe">Windows</a>, <a href="http://pculture.org/nightlies/Miro-3.0-rc1.dmg">Mac</a> and <a href="http://pculture.org/nightlies/miro-3.0-rc1.tar.gz">Linux</a>.</p>
<p>We have fixed about <a href="http://bugzilla.pculture.org/roadmap.cgi?product=Miro&amp;target=3.0">a zillion bugs</a> and have implemented some great features such as:</p>
<ul>
<li>Support For Subtitles; embedded, co-located or browse toanywhere on your system.</li>
<li>Item Metadata Editing; change the title, description, or audio / video specification.</li>
<li>Play External Settings; global preference for all files, and a context menu for single items.</li>
</ul>
<p>There are major speed improvements for navigating the UI, adding files to miro, and saving large search feeds.  We&#8217;ve improved shortcuts for audio playback, made some visual improvements and <a href="https://develop.participatoryculture.org/trac/democracy/wiki/3.0ReleaseNotes">much, much, more</a>.</p>
<p>This release also include updates to vlc (windows) and libtorrent (all os).</p>
<p>We are looking for help testing the release candidate, and hope you will download it and report back to us any of your findings.</p>
<p>To let us know how it goes, you can:</p>
<ul>
<li> comment here</li>
<li><a href="http://bugzilla.pculture.org/enter_bug.cgi?product=Miro">report a bug</a></li>
<li><a href="http://www.getmiro.com/using-miro/help/">post in the forum </a></li>
<li>email feedback@pculture.org</li>
</ul>
<p>If you&#8217;d like to help more, please take a look at the <a href="http://litmus.pculture.org">regression tests</a> or see the <a href="http://pculture.org/devblogs/mirotesting/getting-started-guide-for-new-testers/">getting started guide</a>.</p>
<p>As always, all help is greatly appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2010/02/05/parlez-vous-sprechen-sie-parlate-govoris-li/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2.5.4 rc available</title>
		<link>http://pculture.org/devblogs/mirotesting/2009/11/11/254-rc-available/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2009/11/11/254-rc-available/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:51:45 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=196</guid>
		<description><![CDATA[Update
Miro 2.5.4-rc2 has now been posted.  Please take the time to download and check it out.
windows: http://pculture.org/nightlies/Miro-2.5.4-rc2.exe
os x: http://pculture.org/nightlies/Miro-2.5.4-rc2.dmg
source: http://pculture.org/nightlies/Miro-2.5.4-rc2.tar.gz

The release candidate for Miro 2.5.4 is posted.  Please test it out and report any bugs found. Miro 2.5.4 will be a bug fix release for some database issues and contains an update to vlc 1.0.3.
]]></description>
			<content:encoded><![CDATA[<h3>Update</h3>
<p>Miro 2.5.4-rc2 has now been posted.  Please take the time to download and check it out.</p>
<p>windows: <a title="miro 2.5.4-rc2" href="http://pculture.org/nightlies/Miro-2.5.4-rc2.exe">http://pculture.org/nightlies/Miro-2.5.4-rc2.exe</a></p>
<p>os x: <a href="http://pculture.org/nightlies/Miro-2.5.4-rc2.dmg">http://pculture.org/nightlies/Miro-2.5.4-rc2.dmg</a></p>
<p>source: <a href="http://pculture.org/nightlies/Miro-2.5.4-rc2.tar.gz">http://pculture.org/nightlies/Miro-2.5.4-rc2.tar.gz</a></p>
<p><span id="more-196"></span></p>
<p>The release candidate for <a href="http://pculture.org/nightlies">Miro 2.5.4 is posted</a>.  Please <a href="http://litmus.pculture.org">test it out </a>and <a href="http://bugzilla.pculture.org">report any bugs</a> found. Miro 2.5.4 will be a bug fix release for some database issues and contains an update to vlc 1.0.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2009/11/11/254-rc-available/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Miro 2.5.3 Release Candidate build testing</title>
		<link>http://pculture.org/devblogs/mirotesting/2009/09/29/miro-253-release-candidate-build-testing/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2009/09/29/miro-253-release-candidate-build-testing/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:45:50 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Miro]]></category>

		<category><![CDATA[release candidate]]></category>

		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=191</guid>
		<description><![CDATA[The developers have fixed a TON of BUGs for a 2.5.3 release and it is time to get some serious testing done on the posted release candidate build.
Changes include some fixes to some unknown errors, updates to vlc and libtorrent, changes for some os x 10.6 specific issues, and some other file naming problems on [...]]]></description>
			<content:encoded><![CDATA[<p>The developers have fixed a <a href="https://develop.participatoryculture.org/trac/democracy/wiki/2.5ReleaseNotes">TON of BUGs</a> for a 2.5.3 release and it is time to get some serious testing done on the posted <a href="http://pculture.org/nightlies">release candidate build</a>.</p>
<p>Changes include some fixes to some <i>unknown errors</i>, updates to vlc and libtorrent, changes for some os x 10.6 specific issues, and some other file naming problems on windows.</p>
<p>Thanks to a contribution for Jason, we have also added the ability to play any item in an external player via the right-click context menu. This is the initial implementation of a long-requested feature.</p>
<p>Because there are so many changes that affect all part of Miro, we really need to get to broad testing on this.&nbsp; Please download the nightly build for your os: <a href="http://participatoryculture.org/nightlies/Miro-2.5.3-rc1.exe">windows</a>, <a href="http://participatoryculture.org/nightlies/Miro-2.5.3-rc1.dmg">os x</a>, <a href="http://participatoryculture.org/nightlies/miro-2.5.3-rc1.tar.gz">source</a>.</p>
<p>There is a <a href="http://litmus.pculture.org">2.5.3 rc test run in litmus</a>.&nbsp; The <i>focus areas</i> test group consists of tests for the areas that have been changed the most.&nbsp; Please give us some of your time and run few test cases.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2009/09/29/miro-253-release-candidate-build-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s up</title>
		<link>http://pculture.org/devblogs/mirotesting/2009/09/14/whats-up/</link>
		<comments>http://pculture.org/devblogs/mirotesting/2009/09/14/whats-up/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 12:44:08 +0000</pubDate>
		<dc:creator>Janet</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://pculture.org/devblogs/mirotesting/?p=187</guid>
		<description><![CDATA[Few updates about what&#8217;s come and gone in miro testing lately.
Souce and Nightly Build testing:
Source repositories: a few week ago we migrated from using subversion to git.  If you&#8217;d like to keep track of the code checkins, you can view the changes here: https://git.participatoryculture.org/miro/log/?showmsg=1 .  It&#8217;s useful to see  the regular changes if you are [...]]]></description>
			<content:encoded><![CDATA[<p>Few updates about what&#8217;s come and gone in miro testing lately.</p>
<p><strong>Souce and Nightly Build testing:<br />
</strong>Source repositories: a few week ago we migrated from using subversion to git.  If you&#8217;d like to keep track of the code checkins, you can view the changes here: <a href="https://git.participatoryculture.org/miro/log/?showmsg=1" target="_blank">https://git.participatoryculture.org/miro/log/?showmsg=1</a> .  It&#8217;s useful to see  the regular changes if you are actively using nightly builds.</p>
<p>In <a href="http://litmus.pculture.org">Litmus</a> there a new group under the nightly build test run, for weekly recommended tests.  In that group there will be a selection of test cases relevant to the recent code changes of the past week.  I&#8217;d really like to focus on improving the time gap between when a bug was injected, to the time it was detected.  I think focused testing will help that.</p>
<p><strong>Miro 2.5.3:</strong> we&#8217;d like to push out a 2.5.3 release soon.  In 2.5 there are  issues where users will get an unknown error on startup.  There have been some changes to how we handle and log errors that occur during database transactions.  Another different error that looks the same on Windows has also been corrected for the 2.5.3 release.</p>
<p>Additionally, vlc (for windows playback) has been updated to 1.0.1, libtorrent has been updated to 0.14.5. Perian Quicktime components (for os x playback) have also been updated.<br />
<strong></strong></p>
<p><strong>Miro 2.6: </strong>Work is underway for the next major release.  The most notable enhancement is subtitle support  Luc is working on adding subtitle support to allow for more translations as well as assist the hearing impaired.  To help finance it, we&#8217;ve posted the <a href="http://www.kickstarter.com/projects/1116615214/subtitles-in-miro-translations-and-support-for-t" target="_blank">project on Kickstart</a>.</p>
<p>We have also had some code contributions.  There is now a context menu for items: Play Externally.  This implements part of bug #9350, which is a long-requested feature.  We have Jason Woofendon to thank for that patch.</p>
]]></content:encoded>
			<wfw:commentRss>http://pculture.org/devblogs/mirotesting/2009/09/14/whats-up/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

