{"id":17552397,"url":"https://github.com/saschpe/android-pls-parser","last_synced_at":"2026-03-12T15:01:19.595Z","repository":{"id":136456537,"uuid":"82480345","full_name":"saschpe/android-pls-parser","owner":"saschpe","description":"A playlist file (*.pls) parser library for Android","archived":false,"fork":false,"pushed_at":"2018-02-06T16:06:10.000Z","size":141,"stargazers_count":18,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-24T01:37:53.442Z","etag":null,"topics":["aar-library","android","android-library","parser","parser-library","playlist","pls","travis-ci"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saschpe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-02-19T18:32:39.000Z","updated_at":"2024-02-22T10:31:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"e1424f25-74a2-473d-9626-a6e106abe643","html_url":"https://github.com/saschpe/android-pls-parser","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/saschpe/android-pls-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2Fandroid-pls-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2Fandroid-pls-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2Fandroid-pls-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2Fandroid-pls-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saschpe","download_url":"https://codeload.github.com/saschpe/android-pls-parser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2Fandroid-pls-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30429288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aar-library","android","android-library","parser","parser-library","playlist","pls","travis-ci"],"created_at":"2024-10-21T05:04:15.309Z","updated_at":"2026-03-12T15:01:19.562Z","avatar_url":"https://github.com/saschpe.png","language":"Java","readme":"# Android Playlist File Parser\n[ ![Download](https://api.bintray.com/packages/saschpe/maven/android-pls-parser/images/download.svg) ](https://bintray.com/saschpe/maven/android-pls-parser/_latestVersion)\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20Playlist%20File%20Parser-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/5538)\n[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n[![Build Status](https://travis-ci.org/saschpe/android-pls-parser.svg?branch=master)](https://travis-ci.org/saschpe/android-pls-parser) \n\u003ca href=\"http://www.methodscount.com/?lib=saschpe.android%3Apls-parser%3A1.0.5\"\u003e\u003cimg src=\"https://img.shields.io/badge/Methods and size-47 | 6 KB-e91e63.svg\"/\u003e\u003c/a\u003e\n\nA playlist file (*.pls) parser library for Android. Please check the\nformat's [Wikipedia page][wp_pls] for details.\n\n# Usage\nTo parse a playlist file provided as an InputStream:\n```java\n// ...\nPlaylist playlist = PlaylistParser.parse(inputStream);\nfor (Playlist.Track track : playlist.getTracks()) {\n    track.getFile();\n    track.getTitle();\n    // ...\n}\n```\n\nTo parse a playlist file provided as a String:\n```java\n// ...\nPlaylist playlist = PlaylistParser.parse(string);\nfor (Playlist.Track track : playlist.getTracks()) {\n    track.getFile();\n    track.getTitle();\n    // ...\n}\n```\n\n# Download\n```groovy\ncompile 'saschpe.android:pls-parser:1.0.5'\n```\n\nSnapshots of the development version are available in [Sonatype's `snapshots` repository][snap].\n\n# Users\n* [Alpha+ Player](https://play.google.com/store/apps/details?id=saschpe.alphaplus)\n\n# License\n\n    Copyright 2017 Sascha Peilicke\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\n [snap]: https://oss.sonatype.org/content/repositories/snapshots/\n [wp_pls]: https://en.wikipedia.org/wiki/PLS_(file_format)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaschpe%2Fandroid-pls-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaschpe%2Fandroid-pls-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaschpe%2Fandroid-pls-parser/lists"}