From 3c50eb8a67b456bc32e68d02ad00785b6620ce0f Mon Sep 17 00:00:00 2001 From: Jakub Pryc <94321002+Noarkhh@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:51:40 +0200 Subject: [PATCH] Update readme, use released ivf_plugin (#3) --- README.md | 18 ++++++------------ mix.exs | 7 +------ 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 7f342af..b8643df 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/mix.exs b/mix.exs index 88fe515..f82d0a0 100644 --- a/mix.exs +++ b/mix.exs @@ -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},