Skip to content

Commit

Permalink
Update readme, use released ivf_plugin (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noarkhh authored Jul 8, 2024
1 parent f738736 commit 3c50eb8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
18 changes: 6 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,25 @@
# Membrane VPx Plugin

[![Hex.pm](https://img.shields.io/hexpm/v/membrane_template_plugin.svg)](https://hex.pm/packages/membrane_template_plugin)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_template_plugin)
[![CircleCI](https://circleci.com/gh/membraneframework/membrane_template_plugin.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane_template_plugin)
[![Hex.pm](https://img.shields.io/hexpm/v/membrane_vpx_plugin.svg)](https://hex.pm/packages/membrane_vpx_plugin)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_vpx_plugin)
[![CircleCI](https://circleci.com/gh/membraneframework/membrane_vpx_plugin.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane_vpx_plugin)

This repository contains a template for new plugins.

Check out different branches for other flavors of this template.
This plugin can be used for encoding and decoding VP9 and VP8 streams.

It's a part of the [Membrane Framework](https://membrane.stream).

## Installation

The package can be installed by adding `membrane_template_plugin` to your list of dependencies in `mix.exs`:
The package can be installed by adding `membrane_vpx_plugin` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:membrane_template_plugin, "~> 0.1.0"}
{:membrane_vpx_plugin, "~> 0.1.0"}
]
end
```

## Usage

TODO

## Copyright and License

Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_template_plugin)
Expand Down
7 changes: 1 addition & 6 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,7 @@ defmodule Membrane.VPx.Plugin.Mixfile do
{:membrane_vp8_format, "~> 0.5.0"},
{:membrane_vp9_format, "~> 0.5.0"},
{:membrane_precompiled_dependency_provider, "~> 0.1.0"},
# {:membrane_ivf_plugin, "~> 0.7.0", only: :test},
{:membrane_ivf_plugin,
github: "membraneframework/membrane_ivf_plugin",
branch: "fix-plugin",
override: true,
only: :test},
{:membrane_ivf_plugin, "~> 0.8.0", only: :test},
{:membrane_raw_video_parser_plugin, "~> 0.12.1", only: :test},
{:membrane_file_plugin, "~> 0.17.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
Expand Down

0 comments on commit 3c50eb8

Please sign in to comment.