-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
88 lines (63 loc) · 3.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Librosa : audio and music processing in Python">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Librosa</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-490BMWE709"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-490BMWE709');
</script>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/librosa">View on GitHub</a>
<!-- <h1 id="project_title">Librosa</h1> -->
<img src="images/librosa_logo_text.png" alt="Librosa">
<h2 id="project_tagline">audio and music processing in Python</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<p><a href="https://pypi.python.org/pypi/librosa"><img src="https://img.shields.io/pypi/v/librosa.svg" alt="PyPI"></a>
<a href="https://anaconda.org/conda-forge/librosa"> <img src="https://anaconda.org/conda-forge/librosa/badges/version.svg" /> </a>
<a href="https://github.com/librosa/librosa/actions/workflows/ci.yml"><img src="https://github.com/librosa/librosa/actions/workflows/ci.yml/badge.svg" alt="Build Status"></a>
<a href="https://github.com/librosa/librosa/actions/workflows/docs.yml"><img src="https://github.com/librosa/librosa/actions/workflows/docs.yml/badge.svg" alt="Docs"></a>
<a href="https://codecov.io/gh/librosa/librosa"><img src="https://codecov.io/gh/librosa/librosa/branch/main/graph/badge.svg?token=ULWnUHaIJC"/></a>
<a href="https://doi.org/10.5281/zenodo.591533"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.591533.svg" alt="DOI"></a>
<a href="https://github.com/librosa/librosa/blob/main/LICENSE.md"><img src="https://img.shields.io/pypi/l/librosa.svg" alt="License"></a>
</p>
<h2>
<a id="documentation" class="anchor" href="#documentation" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Documentation</h2>
<p>See <a href="https://librosa.org/doc/">https://librosa.org/doc/</a> for a complete reference manual and introductory tutorials.</p>
<p>We also have a <a href="https://librosa.org/blog/">developer blog</a>.<p>
<h2><a id="installation" class="anchor" href="#installation" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Installation</h2>
<p>The latest stable release is available on PyPI, and you can install it by saying </p>
<pre><code>pip install librosa
</code></pre>
<p>librosa is also available as a <a href="https://anaconda.org/">conda</a> package. You can
install it by saying </p>
<pre><code>conda install -c conda-forge librosa</code></pre>
<h2>
<a id="discussion" class="anchor" href="#discussion" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Discussion</h2>
<p>Please direct non-development questions and discussion topics to our web forum at
<a href="https://groups.google.com/forum/#!forum/librosa">https://groups.google.com/forum/#!forum/librosa</a> </p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>