2019-07-26 11:05:27 +01:00
{% extends 'base.html' %}
2020-01-23 11:59:23 +00:00
{% block title %}music{% endblock %}
2019-07-26 11:05:27 +01:00
{% block content %}
2019-07-29 11:44:10 +01:00
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
< div class = "row card pad-12" >
< p class = "center-text" style = "color: red" > {{ message }}< / p >
< / div >
{% endfor %}
{% endif %}
{% endwith %}
2019-07-26 11:05:27 +01:00
< div class = "row" >
2019-08-03 21:35:08 +01:00
< div class = "{% if logged_in %}pad-12{% else %}pad-9{% endif %} card" >
2022-08-07 13:27:59 +01:00
<!-- <h1 class="center - text">Mixonomer</h1> -->
2019-07-26 11:05:27 +01:00
2020-02-28 21:13:30 +00:00
< p class = "center-text" > A set of tools using Spotify and Last.fm to create smart playlists and calculate listening statistics< / p >
< p class = "center-text" > Playlists are updated multiple times a day to keep tracks up to date< / p >
< p class = "center-text" > Written in Python and Javascript, based on the < a href = "https://github.com/Sarsoo/spotframework" > spotframework< / a > and < a href = "https://github.com/Sarsoo/pyfmframework" > fmframework< / a > libraries< / p >
< div style = "padding:10px" >
2022-08-07 13:27:59 +01:00
< a class = "button" style = "padding:15px;width:49%" href = "https://github.com/Sarsoo/Mixonomer" > View Source< / a >
< a class = "button" style = "padding:15px;width:49%" href = "https://github.com/Sarsoo/Mixonomer-iOS" > iOS Client Source< / a >
2020-02-28 21:13:30 +00:00
< / div >
2019-07-26 11:05:27 +01:00
2019-08-03 21:35:08 +01:00
{% if logged_in %}
2020-02-28 21:13:30 +00:00
< a class = "button full-width" href = "/app" > Launch< / a >
2019-08-03 21:35:08 +01:00
{% endif %}
2019-07-29 11:44:10 +01:00
< / div >
2019-08-03 21:35:08 +01:00
{% if not logged_in %}
2019-07-29 11:44:10 +01:00
2019-08-03 21:35:08 +01:00
{% block form %}{% endblock %}
{% endif %}
2019-07-26 11:05:27 +01:00
< / div >
2020-02-28 21:13:30 +00:00
< div class = "row" >
< h1 > Smart Playlists< / h1 >
< / div >
< div class = "row center-text" >
< div class = "pad-6 card" >
< h1 class = "center-text" > Sources< / h1 >
< p > Create smart Spotify playlists pulling tracks from< / p >
< ul style = "text-align:left" >
< li style = "padding:10px" > Spotify Playlists< / li >
< li style = "padding:10px" > Spotify Library Tracks< / li >
2022-08-07 13:27:59 +01:00
< li style = "padding:10px" > Mixonomer Playlists< / li >
2020-02-28 21:13:30 +00:00
< / ul >
< / div >
< div class = "pad-6 card" >
< h1 class = "center-text" > Currents< / h1 >
2020-02-29 16:30:22 +00:00
< p > Currents are mix playlists acting as a snapshot of what's being listened to at the moment< / p >
< p > Includes date filtering on playlist sources for recently added tracks< / p >
2020-02-28 21:13:30 +00:00
< p > Optionally search for and include "monthly" playlists for the last two months when named e.g february 20< / p >
< / div >
< / div >
< div class = "row center-text" >
< div class = "pad-6 card" >
< h1 class = "center-text" > Last.fm Charts< / h1 >
< p > Create playlists including Last.fm track charts of varying length and time range< / p >
< / div >
< div class = "pad-6 card" >
< h1 class = "center-text" > Recommendations< / h1 >
2020-02-29 16:30:22 +00:00
< p > Include Spotify recommendations based on the other tracks of the playlist< / p >
2020-02-28 21:13:30 +00:00
< / div >
< / div >
< div class = "row" >
< h1 > Tags< / h1 >
< / div >
< div class = "row center-text" >
< div class = "pad-6 card" >
< h1 class = "center-text" > Last.fm Integration< / h1 >
< p > Create groups of entries for scrobble summing and listening stats< / p >
< / div >
< div class = "pad-6 card" >
< h1 class = "center-text" > Visualise Data< / h1 >
< p > Present listening trends with pie charts< / p >
< / div >
< / div >
2019-07-26 11:05:27 +01:00
{% endblock %}