GitXplorerGitXplorer
p

audio-feeder

public
18 stars
0 forks
11 issues

Commits

List of commits on branch master.
Verified
69bd569910f90e2aba9c0032e05b0eef38f3181b

Merge pull request #51 from pganssle/try_video_variations

ppganssle committed a year ago
Unverified
a934dc19e70828b181cf2643f683fad4905e3a01

Try video stream error handling a different way

ppganssle committed a year ago
Verified
dd059e2f35f70037ddca8bf53a53f26d8602e8aa

Merge pull request #49 from pganssle/fix_table_updates

ppganssle committed a year ago
Unverified
544b546bed2b36846ae4adeaef0e37c952199e11

Delete objects to be replaced

ppganssle committed a year ago
Unverified
79fcf26e3c343db995d2a34ae85964ea747ad525

Add test for issue updating tables

ppganssle committed a year ago
Verified
4437a610ffb1a9130495d49238d61ccc3ce9f3ed

Merge pull request #46 from pganssle/fix_singlefile

ppganssle committed a year ago

README

The README file for this repository.

audio-feeder is a Flask-based web-app that hosts your audiobooks (or other audio content) as RSS feeds compatible with podcatchers.

Features

.. image:: docs/images/screenshots/list_entry_p0.jpg :width: 800px :alt: The main list interface

The main interface lists all your audiobooks once the database is updated (either by using audio-feeder update or by visiting the /update url. The default interface should also work well on mobile:

.. image:: docs/images/screenshots/list_mobile.jpg :width: 400px :alt: The mobile list interface

Rendered feeds


For each entry, audio-feeder can also generate "rendered" feeds, depending on what metadata is available:

  • Single file: This feed consists of a single file; if the original directory contains multiple files, they will be merged together using ffmpeg. If chapter information is not available in the original files, each file will be considered a separate "chapter".

  • Chapters: This feed has one file per chapter; it is only available if explicit chapter metadata is available in the file (e.g. in an m4b file, or using Overdrive MediaMarkers).

  • Segmented: This is a feed that splits up and recombines files in such a way as to create files that are ~1 hour long (preferring longer files to shorter files). Files will only be split up along chapter boundaries, but they can be combined from files without chapter information. This mode is available if the original entry has more than one file, or if it has chapter information (or both).

QR Codes


Each feed has an associated QR code, so that you can easily browse the list from a computer, but scan the individual feeds from your phone. In the default front-end, QR codes are displayed via modal pop-ups:

.. image:: docs/images/screenshots/list_p0_qr.jpg :width: 800px :alt: Demonstration of the QR code mobile.

Display options


The user can customize things like the sort order and the number of entries per page:

.. image:: docs/images/screenshots/settings_pulldown.jpg :width: 800px :alt: Demonstration of the settings pulldown

Installation and use

Probably the easiest way to deploy this is via docker. For your convenience, I have created a repository with a docker-compose configuration <https://github.com/pganssle/audio_feeder_docker>_. It uses nginx to serve static media files, and gunicorn to deploy the application.

If you want to test it out locally, you can use tox -e start_server to run a test server. This will create a temporary server directory at /tmp/audio_feeder_server, and you can play around with, and you can mount your audiobook directory at /tmp/audio_feeder_server/static/media to have it work on your own audiobooks (bind mount, symlink or hard link should work just fine).

In a virtualenv with audio-feeder installed, you can run audio-feeder --help to see the various command line tools bundled with the application.

Note

While the state of this is getting much closer to something production-ready, I am emphatically not a front-end developer, and I don't have extremely high confidence in the security of this project. Use at your own risk (and if you do come up with some security and/or usability improvements, please do send a PR).

This is only tested on Linux, but it may also work on other platforms.

Dependencies

In addition to the python dependencies specified in pyproject.toml, this project also requires installing ffmpeg with at least the aac codec, and the tests also require the libmp3lame codec.

License

All images and documentation contained herein are licensed under CC-0 <https://creativecommons.org/publicdomain/zero/1.0/>_.

The code is released under the Apache 2.0 <https://www.apache.org/licenses/LICENSE-2.0>_ license.

Contributing

Pull requests and issues are more than welcome. Please be aware that your contributions will be released under the licenses stated above. If you are not comfortable with that, please do not make a pull request.