Skip to content

Commit

Permalink
Prepare v0.3.1-beta release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Breakthrough committed Jan 23, 2016
1 parent 3488d60 commit d1463ac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Video Scene Cut Detection and Analysis Tool

[![Documentation Status](https://readthedocs.org/projects/pyscenedetect/badge/?version=latest)](http://pyscenedetect.readthedocs.org/en/latest/?badge=latest)

### New Release: v0.3.0.1-beta (January 20, 2016)
### New Release: v0.3.1-beta (January 23, 2016)

PySceneDetect is finally out of alpha, and is finally in the first beta release ([get it here!](https://github.com/Breakthrough/PySceneDetect/releases)). This release brings a number of major changes, including the much awaited content-aware detection mode (see [`docs/changelog.md`](https://github.com/Breakthrough/PySceneDetect/blob/master/docs/changelog.md) or [the Releases page](https://github.com/Breakthrough/PySceneDetect/releases) for details.). Also see [the new `USAGE.md` file](https://github.com/Breakthrough/PySceneDetect/blob/master/USAGE.md) for details on the new detection modes, default values/thresholds to try, and how to effectively choose the optimal detection parameters.

Expand Down Expand Up @@ -62,7 +62,7 @@ To perform threshold-based analysis with the default parameters, on a video name

To perform content-based analysis, with a threshold intensity of 30:

scenedetect --input myvideo.mp4 --detector content --threshold 16
scenedetect --input myvideo.mp4 --detector content --threshold 30

To perform threshold-based analysis, with a threshold intensity of 16 and a match percent of 90:

Expand Down
9 changes: 5 additions & 4 deletions docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ PySceneDetect is completely free software, and can be downloaded from the links

## Download

<div class="important">
<h3>Source (All Platforms) &nbsp; <span class="fa fa-windows"></span> &nbsp; <span class="fa fa-linux"></span> &nbsp; <span class="fa fa-apple"></span></h3>
<h3><span class="fa fa-forward"></span> Latest Release: <b>v0.3.0.1-beta</b></h3>
<h4><span class="fa fa-calendar"></span>&nbsp; Release Date:&nbsp; <b>January 20, 2016</b></h4>
<a href="https://github.com/Breakthrough/PySceneDetect/releases" class="btn btn-success" role="button"><span class="fa fa-download"></span>&nbsp; Download</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../changelog/" class="btn btn-info" role="button"><span class="fa fa-reorder"></span>&nbsp; Changelog</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="#installation" class="btn btn-warning" role="button"><span class="fa fa-gear"></span>&nbsp; Installation</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../examples/usage/" class="btn btn-danger" role="button"><span class="fa fa-book"></span>&nbsp; Getting Started</a>

<div class="important">
<h3><span class="fa fa-forward"></span> Latest Release: <b>v0.3.1-beta</b></h3>
<h4><span class="fa fa-calendar"></span>&nbsp; Release Date:&nbsp; <b>January 23, 2016</b></h4>
<a href="https://github.com/Breakthrough/PySceneDetect/releases" class="btn btn-success" role="button"><span class="fa fa-download"></span>&nbsp; Download</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../changelog/" class="btn btn-info btn-disabled" role="button"><span class="fa fa-reorder"></span>&nbsp; Changelog</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="#installation" class="btn btn-warning" role="button"><span class="fa fa-gear"></span>&nbsp; Installation</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../examples/usage/" class="btn btn-danger" role="button"><span class="fa fa-book"></span>&nbsp; Getting Started</a>
</div>

Once you've downloaded the source archive, extract it to a location of your choice, and make sure you have the appropriate [system requirements](#installing-dependencies) installed before continuing. PySceneDetect can be installed by calling `python setup.py install` from the location of the extracted files (see [the Installation section](#installation) below for details), after which you can call PySceneDetect from any terminal/command prompt by typing `scenedetect`. Try running `scenedetect --version` to verify that everything was installed correctly.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<h1>PySceneDetect &nbsp;<span class="fa fa-film"></span></h1>

<div class="important">
<h3><span class="fa fa-info-circle"></span>&nbsp; Latest Release: <b>v0.3.0.1-beta</b> (January 20, 2016)</h3>
<a href="download/" class="btn btn-success" role="button"><span class="fa fa-download"></span>&nbsp; Download</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="changelog/" class="btn btn-info" role="button"><span class="fa fa-reorder"></span>&nbsp; Changelog</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="download/#installation" class="btn btn-warning" role="button"><span class="fa fa-gear"></span>&nbsp; Installation</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="examples/usage/" class="btn btn-danger" role="button"><span class="fa fa-book"></span>&nbsp; Getting Started</a>
<h3><span class="fa fa-info-circle"></span>&nbsp; Latest Release: <b>v0.3.1-beta</b> (January 23, 2016)</h3>
<a href="download/" class="btn btn-success" role="button"><span class="fa fa-download"></span>&nbsp; Download</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="changelog/" class="btn btn-info btn-disabled" role="button"><span class="fa fa-reorder"></span>&nbsp; Changelog</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="download/#installation" class="btn btn-warning btn-disabled" role="button"><span class="fa fa-gear"></span>&nbsp; Installation</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="examples/usage/" class="btn btn-danger" role="button"><span class="fa fa-book"></span>&nbsp; Getting Started</a>
</div>


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_requires():

setup(
name='PySceneDetect',
version='0.3.0.1-beta',
version='0.3.1-beta',
description="A cross-platform, OpenCV-based video scene detection program and Python library. ",
long_description=open('README.md').read(),
author='Brandon Castellano',
Expand Down

0 comments on commit d1463ac

Please sign in to comment.