mediaplayer.html 5.76 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Native Media Player Support &mdash; ownCloud User Manual 5.0 documentation</title>
    
    <link rel="stylesheet" href="_static/style.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <link rel="stylesheet" href="_static/style.css" type="text/css" />
    <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '',
        VERSION:     '5.0',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <script type="text/javascript" src="_static/bootstrap.js"></script>
    <link rel="top" title="ownCloud User Manual 5.0 documentation" href="index.html" />
    <link rel="next" title="User Account Migration" href="migration.html" />
    <link rel="prev" title="Using the Bookmarks App" href="bookmarks.html" />
<script type="text/javascript">
(function () {
  /**
   * Patch TOC list.
   *
   * Will mutate the underlying span to have a correct ul for nav.
   *
   * @param $span: Span containing nested UL's to mutate.
   * @param minLevel: Starting level for nested lists. (1: global, 2: local).
   */
  var patchToc = function ($ul, minLevel) {
    var findA;

    // Find all a "internal" tags, traversing recursively.
    findA = function ($elem, level) {
      var level = level || 0,
        $items = $elem.find("> li > a.internal, > ul, > li > ul");

      // Iterate everything in order.
      $items.each(function (index, item) {
        var $item = $(item),
          tag = item.tagName.toLowerCase(),
          pad = 15 + ((level - minLevel) * 10);

        if (tag === 'a' && level >= minLevel) {
          // Add to existing padding.
          $item.css('padding-left', pad + "px");
          console.log(level, $item, 'padding-left', pad + "px");
        } else if (tag === 'ul') {
          // Recurse.
          findA($item, level + 1);
        }
      });
    };

    console.log("HERE");
    findA($ul);
  };

  $(document).ready(function () {
    // Add styling, structure to TOC's.
    $(".dropdown-menu").each(function () {
      $(this).find("ul").each(function (index, item){
        var $item = $(item);
        $item.addClass('unstyled');
      });
      $(this).find("li").each(function () {
        $(this).parent().append(this);
      });
    });

    // Patch in level.
    patchToc($("ul.globaltoc"), 2);
    patchToc($("ul.localtoc"), 2);

    // Enable dropdown.
    $('.dropdown-toggle').dropdown();
  });
}());
</script>

  </head>
  <body>
  

<div class="container">
  <div class="content">
    <div class="page-header">
      <h1><a href="contents.html">ownCloud User Manual</a></h1>

    </div>
    
			<div class="row">
				<div class="span3">
					<div class="sidebar">
						<div class="well">
							<div class="menu-support-container">
								<ul id="menu-support" class="menu">
									<ul>
										<li><a href="contents.html">Overview</a></li>
									</ul>
                  <ul>
<li class="toctree-l1"><a class="reference internal" href="index.html">User Documentation</a></li>
</ul>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="webinterface.html">The ownCloud Web Interface</a></li>
<li class="toctree-l1"><a class="reference internal" href="files/index.html">Files &amp; Synchronization</a></li>
<li class="toctree-l1"><a class="reference internal" href="pim/index.html">Contacts &amp; Calendar</a></li>
<li class="toctree-l1"><a class="reference internal" href="bookmarks.html">Using the Bookmarks App</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="">Native Media Player Support</a></li>
<li class="toctree-l1"><a class="reference internal" href="migration.html">User Account Migration</a></li>
</ul>

								</ul>
							</div>
						</div>
					</div>
				</div>
        

				<div class="span9">
					<div class="page-content">
						
  <div class="section" id="native-media-player-support">
<h1>Native Media Player Support<a class="headerlink" href="#native-media-player-support" title="Permalink to this headline">¶</a></h1>
<img alt="_images/mediaplayer.png" src="_images/mediaplayer.png" />
<p>You can access your music stored in ownCloud with every
Ampache-compatible media player. You can find the URL for your specific
ownCloud installation in your personal settings, or replace ADDRESS with
the URL of your ownCloud installation yourself.</p>
<p><tt class="docutils literal"><span class="pre">Ampache-URL:</span> <span class="pre">http://ADDRESS/remote.php/ampache/</span></tt></p>
<p>Ampache-compatible players that work with ownCloud include:</p>
<ul class="simple">
<li><a class="reference external" href="http://amarok.kde.org/">amaroK</a>, standard KDE music player</li>
<li><a class="reference external" href="http://www.tomahawk-player.org/">tomahawk</a>, cross platform player</li>
<li><a class="reference external" href="http://justplayer-dev.blogspot.com/">justplayer</a>, music player for android</li>
</ul>
<p>You can find more information about Ampache and other players at the
<a class="reference external" href="http://en.wikipedia.org/wiki/Ampache">Ampache wikipedia article</a></p>
<p>The current maintainer of the Media Player is Robin Appelman.</p>
</div>


					</div>
				</div>
			</div>
    
  </div>
</div>
  </body>
</html>