{"id":18352796,"url":"https://github.com/membraneframework/membrane_flac_plugin","last_synced_at":"2026-06-01T03:31:28.369Z","repository":{"id":40351620,"uuid":"188047268","full_name":"membraneframework/membrane_flac_plugin","owner":"membraneframework","description":"Parser for files in FLAC bitstream format","archived":false,"fork":false,"pushed_at":"2026-05-15T11:31:49.000Z","size":290,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-05-15T13:29:07.348Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","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/membraneframework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-05-22T13:42:57.000Z","updated_at":"2026-05-14T11:02:27.000Z","dependencies_parsed_at":"2023-07-16T00:28:15.526Z","dependency_job_id":"fc6857af-dff8-4b64-86d6-bdcf0798808e","html_url":"https://github.com/membraneframework/membrane_flac_plugin","commit_stats":{"total_commits":67,"total_committers":10,"mean_commits":6.7,"dds":0.4328358208955224,"last_synced_commit":"1dfff71b0747d2b1062c7bff3937ac9670070356"},"previous_names":["membraneframework/membrane-element-flac-parser"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/membraneframework/membrane_flac_plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membraneframework%2Fmembrane_flac_plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membraneframework%2Fmembrane_flac_plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membraneframework%2Fmembrane_flac_plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membraneframework%2Fmembrane_flac_plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/membraneframework","download_url":"https://codeload.github.com/membraneframework/membrane_flac_plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membraneframework%2Fmembrane_flac_plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33759178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-05T21:37:26.340Z","updated_at":"2026-06-01T03:31:28.365Z","avatar_url":"https://github.com/membraneframework.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Membrane FLAC plugin\n\n[![Hex.pm](https://img.shields.io/hexpm/v/membrane_flac_plugin.svg)](https://hex.pm/packages/membrane_flac_plugin)\n[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_flac_plugin/)\n[![CircleCI](https://circleci.com/gh/membraneframework/membrane_flac_plugin.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane_flac_plugin)\n\nThis package provides an element for parsing FLAC encoded audio stream.\nMore info can be found in [the docs for element module](https://hexdocs.pm/membrane_flac_plugin).\n\n## Installation\n\nThe package can be installed by adding `membrane_flac_plugin` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:membrane_flac_plugin, \"~\u003e 0.12.1\"}\n  ]\nend\n```\n\n## Usage example\n\n```elixir\ndefmodule Membrane.Demo.FlacPipeline do\n  use Membrane.Pipeline\n  alias Membrane.{Fake}\n  @impl true\n  def handle_init(_opts) do\n    links = [\n      child(:file, %Membrane.File.Source{location: \"sample.flac\"})\n      |\u003e child(:parser, %Membrane.FLAC.Parser{streaming?: false})\n      |\u003e child(:fake_sink, Fake.Sink.Buffers)\n    ]\n    {[spec: links], %{}}\n  end\nend\n```\n\nTo run the example:\n```elixir\nalias Membrane.Demo.FlacPipeline\n{:ok, pid} = FlacPipeline.start_link_supervised!(\"sample.flac\")\nFlacPipeline.play(pid)\n```\n\nDependencies for the example above:\n```elixir\n  {:membrane_file_plugin, \"~\u003e 0.14.0\"},\n  {:membrane_fake_plugin, \"~\u003e 0.10.0\"},\n  {:membrane_flac_plugin, \"~\u003e 0.12.1\"}\n```\n\n## Sponsors\n\nThis project is sponsored by [Abridge AI, Inc.](https://abridge.com)\n\n## Copyright and License\n\nCopyright 2019, [Software Mansion](https://swmansion.com/?utm_source=git\u0026utm_medium=readme\u0026utm_campaign=membrane_flac_plugin)\n\n[![Software Mansion](https://logo.swmansion.com/logo?color=white\u0026variant=desktop\u0026width=200\u0026tag=membrane-github)](https://swmansion.com/?utm_source=git\u0026utm_medium=readme\u0026utm_campaign=membrane_flac_plugin)\n\nLicensed under the [Apache License, Version 2.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmembraneframework%2Fmembrane_flac_plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmembraneframework%2Fmembrane_flac_plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmembraneframework%2Fmembrane_flac_plugin/lists"}