Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ratio and remove it from deps #23

Merged
merged 2 commits into from
Jul 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
Plugin containing elements for cutting and merging raw video. By using this plugin you can
- simply merge multiple video tracks (`VideoMerger`)
- cut out specific intervals of video track (`VideoCutter`)
- combine chosen parts raw video tracks into one (`VideoCutAndMerge`), for instance by taking
- combine chosen parts raw video tracks into one (`VideoCutAndMerge`), for instance by taking
the first half of one track and combining it with the second half of another

For most cases, the `VideoCutAndMerge` bin should be your first choice.
For most cases, the `VideoCutAndMerge` bin should be your first choice.

Implementations of the `VideoCutter` and the `VideoMerger` are using presentation timestamps,
so every `Buffer` should have the `pts` field set.
@@ -24,14 +24,14 @@ The package can be installed by adding `membrane_video_merger_plugin` to your li
```elixir
def deps do
[
{:membrane_video_merger_plugin, "~> 0.9.0"}
{:membrane_video_merger_plugin, "~> 0.9.1"}
]
end
```

## Sample Usage

Both pipelines will result in creating `/tmp/output.raw` file with the first 5 seconds of the
Both pipelines will result in creating `/tmp/output.raw` file with the first 5 seconds of the
`input_1` track and everything but the first 5 seconds of the `input_2` track.

`/tmp/input_1.h264` and `/tmp/input_2.h264` should be an H264 video files.
3 changes: 1 addition & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.VideoMerger.Mixfile do
use Mix.Project

@version "0.9.0"
@version "0.9.1"
@github_url "https://github.com/membraneframework/membrane_video_merger_plugin"

def project do
@@ -39,7 +39,6 @@ defmodule Membrane.VideoMerger.Mixfile do
[
{:membrane_core, "~> 1.0"},
{:membrane_raw_video_format, "~> 0.3.0"},
{:ratio, "~> 3.0"},
{:excoveralls, "~> 0.11", only: :test},
{:membrane_file_plugin, "~> 0.16.0", only: :test},
{:membrane_h264_plugin, "~> 0.9.0", only: :test},
Loading