Compare commits
No commits in common. "main" and "v1.0.1" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -13,8 +13,6 @@ renamelist.txt
|
|||||||
|
|
||||||
# Setuptools distribution folder.
|
# Setuptools distribution folder.
|
||||||
/dist/
|
/dist/
|
||||||
*.whl
|
|
||||||
*.tar.gz
|
|
||||||
|
|
||||||
# Python egg metadata, regenerated from source files by setuptools.
|
# Python egg metadata, regenerated from source files by setuptools.
|
||||||
/*.egg-info
|
/*.egg-info
|
||||||
|
|||||||
12
README.md
12
README.md
@ -12,16 +12,8 @@ The documentation is available on the following [link](https://fabquenneville.gi
|
|||||||
|
|
||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
mediacurator can be installed via the following methods:
|
mediacurator is released on [PyPi](https://pypi.org/project/mediacurator/).
|
||||||
|
Installation instructions are found on the [GitHub page](https://fabquenneville.github.io/mediacurator/usage/installation.html).
|
||||||
- APT repository for Debian/Ubuntu systems
|
|
||||||
- PyPi using pip
|
|
||||||
|
|
||||||
For detailed installation instructions, please visit the following links:
|
|
||||||
|
|
||||||
- [Installation Instructions](https://fabquenneville.github.io/mediacurator/usage/installation.html)
|
|
||||||
- [APT Repository](https://debrepo.fabq.ca/)
|
|
||||||
- [PyPi Page](https://pypi.org/project/mediacurator/)
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|||||||
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,5 +0,0 @@
|
|||||||
mediacurator (1.0.1-1) UNRELEASED; urgency=low
|
|
||||||
|
|
||||||
* Initial release of mediacurator 1.0.1.
|
|
||||||
|
|
||||||
-- Fabrice Quenneville <fabrice@fabq.ca> Tue, 22 Oct 2024 02:07:36 -0400
|
|
||||||
14
debian/control
vendored
14
debian/control
vendored
@ -1,14 +0,0 @@
|
|||||||
Source: mediacurator
|
|
||||||
Section: utils
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Fabrice Quenneville <fabrice@fabq.ca>
|
|
||||||
Build-Depends: debhelper-compat (= 13), dh-python, python3-all
|
|
||||||
Standards-Version: 4.6.0
|
|
||||||
Homepage: https://fabquenneville.github.io/mediacurator
|
|
||||||
Vcs-Git: https://github.com/fabquenneville/mediacurator
|
|
||||||
|
|
||||||
Package: mediacurator
|
|
||||||
Architecture: all
|
|
||||||
Depends: ${misc:Depends}, ${python3:Depends}, ffmpeg
|
|
||||||
Description: A media curation tool with CLI interface
|
|
||||||
This package provides a Python-based media curation tool that automates media file conversions using the FFMPEG library.
|
|
||||||
7
debian/copyright
vendored
7
debian/copyright
vendored
@ -1,7 +0,0 @@
|
|||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
|
||||||
Upstream-Name: mediacurator
|
|
||||||
Source: https://github.com/fabquenneville/mediacurator
|
|
||||||
|
|
||||||
Files: \*
|
|
||||||
Copyright: 2024, Fabrice Quenneville <fabrice@fabq.ca>
|
|
||||||
License: GPLv3
|
|
||||||
8
debian/rules
vendored
8
debian/rules
vendored
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
%:
|
|
||||||
dh $@ --with python3 --buildsystem=pybuild
|
|
||||||
|
|
||||||
clean:
|
|
||||||
dh_clean
|
|
||||||
rm -rf dist/ *.whl *.tar.gz docs/ docsource/
|
|
||||||
1
debian/source/format
vendored
1
debian/source/format
vendored
@ -1 +0,0 @@
|
|||||||
3.0 (quilt)
|
|
||||||
1
debian/source/options
vendored
1
debian/source/options
vendored
@ -1 +0,0 @@
|
|||||||
extend-diff-ignore = "dist/.*|(^|/)(\.pybuild|mediacurator\.egg-info/)"
|
|
||||||
@ -2,61 +2,8 @@
|
|||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
.. _install_toc:
|
|
||||||
|
|
||||||
Table of contents
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
* :ref:`install_about`
|
|
||||||
* :ref:`install_apt`
|
|
||||||
* :ref:`install_pypi`
|
|
||||||
* :ref:`install_ffmpeg`
|
|
||||||
|
|
||||||
.. _install_about:
|
|
||||||
|
|
||||||
About mediacurator's installation
|
|
||||||
---------------------------------
|
|
||||||
|
|
||||||
This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on `GitHub <https://github.com/fabquenneville/mediacurator.git>`_.
|
This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on `GitHub <https://github.com/fabquenneville/mediacurator.git>`_.
|
||||||
|
|
||||||
.. _install_apt:
|
|
||||||
|
|
||||||
Install from APT Repository
|
|
||||||
----------------------------
|
|
||||||
|
|
||||||
The `mediacurator` package is now available through an APT repository. To install it along with all its dependencies (including Python, required Python packages, and FFmpeg) on a Debian/Ubuntu compatible system, follow these steps:
|
|
||||||
|
|
||||||
1. Add the APT repository to your system by following the instructions at the `repository homepage <https://debrepo.fabq.ca/>`_.
|
|
||||||
|
|
||||||
2. Update your package list:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
sudo apt update
|
|
||||||
|
|
||||||
3. Install `mediacurator`:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
sudo apt install -y mediacurator
|
|
||||||
|
|
||||||
This will automatically install the `mediacurator` package and all its dependencies.
|
|
||||||
|
|
||||||
.. _install_pypi:
|
|
||||||
|
|
||||||
Install from PyPi
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
You can install the `mediacurator` package directly from PyPi using the following command:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
pip install mediacurator
|
|
||||||
|
|
||||||
**Note:** If FFmpeg is not already installed, please refer to the instructions in the :ref:`install_ffmpeg` section.
|
|
||||||
|
|
||||||
.. _install_ffmpeg:
|
|
||||||
|
|
||||||
Install FFmpeg
|
Install FFmpeg
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
@ -82,3 +29,13 @@ To verify your FFmpeg installation, you can run:
|
|||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
ffmpeg -version
|
ffmpeg -version
|
||||||
|
|
||||||
|
|
||||||
|
Install from PyPi
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
You can install the `mediacurator` package directly from PyPi using the following command:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
pip install mediacurator
|
||||||
|
|||||||
@ -60,11 +60,8 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1"><a class="reference internal" href="usage/installation.html">Installation</a><ul>
|
<li class="toctree-l1"><a class="reference internal" href="usage/installation.html">Installation</a><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#table-of-contents">Table of contents</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#about-mediacurator-s-installation">About mediacurator’s installation</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#install-from-apt-repository">Install from APT Repository</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#install-from-pypi">Install from PyPi</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#install-ffmpeg">Install FFmpeg</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#install-ffmpeg">Install FFmpeg</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="usage/installation.html#install-from-pypi">Install from PyPi</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1"><a class="reference internal" href="usage/quickstart.html">Quickstart</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="usage/quickstart.html">Quickstart</a></li>
|
||||||
|
|||||||
@ -2,7 +2,5 @@
|
|||||||
# Project: mediacurator
|
# Project: mediacurator
|
||||||
# Version: 0.0.13
|
# Version: 0.0.13
|
||||||
# The remainder of this file is compressed using zlib.
|
# The remainder of this file is compressed using zlib.
|
||||||
xÚ•–Í’”0Çï<E,=è<>Y˜Ùùò¶~lÕV©…º–Ç©LhJ ˜•›¯áëù$3à.<14>þÿ4tº!4ÿL .—)>BŠ\•ÇpSr8Ì<>/N"KŸ>C¯° 'ÄÀ…œÐœ(Æ(›¥-pÂP£Oò5zîÄ<C3AE>'y¿†NÝÝÆ=Ô§Î%,¤¤êE|…”Ð<0C> (ƒ0Á¤dXPö÷÷Ždt™A.°HhþDÚp<C39A>Óô€<C3B4>´ÔæÞ4á*…öŽ«$wÍñ
|
xΪ•–MΣ“0Ηο|<7C>8zΠ} ουθΛΑu<><75>γ±Γ–2†¤&AνΝ―αΧσ“,<OΒ¦—°»<C2B0>_v»μΒ¤ψΚm²η<C2B2>~Nβ”T<E2809D>ζpWi80<38>AΟN¦δ<C2A6><CEB4><EFBFBD>Τ°Qƒ`2ƒθx¥¤Ί)φLEΪψBδ¤<CEB4>ΧQΆό+υO[ ς¦Ή<C2A6>®n™d<E284A2>Σΐγp&K F’²‚²JQ#Υίί4©½«„΅¦<CE85>βQΔ!§μr`®δ;›3k‹ϋΈϋιBk<42>k^OΩK΄>oΫkςjx8ςt―€¤³δY/η,sΐ)ϋΈΙ<CE88>w:ΌΠζΐΚμfH7<>{US'z”<7A>lι¥Ο•Καf]µo~£‘»=χ°fΫ―G)Z{!΄΅<CE84>ΫRϋD†N}χ]<5D><>K**Κ½RΦlEήµΧγποUΑΎΥΪ]Ί$®.VζΓ<CEB6>ϋΘ]H―<48>ΈΤδ³<06>ή<EFBFBD>u~RUΏxΉ_¦wθ^»ξ.rχ<72>ϋOφwMΩ΄ηƒYpΎΔ½΅«¥Μ*έTp΄<70>gΩ†¨!<21>ύΕ<CF8D>κFΡp¨5…4 ο’Y2KcvΆ".σaΝ¦όΊ$<24>1υ<31><CF85>)<29>z<EFBFBD><7A>6<EFBFBD>ΌoΆ¨$”•ΰ°¥g<16><1A>Ϋ<”6Ηis”¶¥-pΪ£-aK”µΔP«@Τ
|
||||||
Ó—] Å\„<¨s1š¡»à}‚‚òD‚ª³qeÄó¼[Mg__ž‹ªHæù5ŠÁÃU<>œ
…üJ³üjÁ#>¦€h„Í…ühÜI!Ƥ:]±¶kÚºSkn§û¿€[©,>ô¼TUgÑļkÎÑ›~1¡çä/¼<17><>v[X<e§›Ü*Ošpq Y8RÝZ°$2ш²LÕk«.JÃl_¥
|
E0Τ:µFQkµ DmPΤCmQ[µΕP»@ΤEν¦Piΰ<69>J]Cjψ-ERΗ<52><CE97>@Uύ<55>1¤φ™ψdνϋz GΎξ]ήΣ[;h]ϋφ΄wAOmft%Oμbd ϋ·οδΪύΚ<*½
|
||||||
ê£3WÏÝß²šeµ<65>ßR¼®”Q“«rê*r<>˜ŠÍp^âtÔJ-+“÷ÍùPþ½LÈ7éÝV¡Îâ¢l>ž¯ý‹u¾jô…j.‡>?1“<31>2·éÚ6Ù^9úÒäñªÉêò¼êÝEåví»¤a)7µê⚪ znLP‰“,”<01>A
|
|
||||||
Ò3§ø<>·ð¾KN8<4E>!¥qÿ<71>MŵIÔýþµê÷¨‰<C2A8>m¹¡µJƒòlYžæiÖ™Y¤fÎmiK[šiK#meK[™i+íÖvkdÝšPkKÔÚˆZ›PKÔÆˆÚ˜P[KÔÖˆÚšP;KÔΈڙP{KÔÞˆÚO¡|Ë&åëšTÿ§ùš&Å3ùƒ1h¤êž2ø¬ÖÙ<><C399>±>:¼§§¶Õ¸›Ó£zj2GòÄ,6áñé;9vÿƒòÌu
|
|
||||||
File diff suppressed because one or more lines are too long
@ -36,47 +36,9 @@
|
|||||||
|
|
||||||
<section id="installation">
|
<section id="installation">
|
||||||
<h1>Installation<a class="headerlink" href="#installation" title="Link to this heading">¶</a></h1>
|
<h1>Installation<a class="headerlink" href="#installation" title="Link to this heading">¶</a></h1>
|
||||||
<section id="table-of-contents">
|
|
||||||
<span id="install-toc"></span><h2>Table of contents<a class="headerlink" href="#table-of-contents" title="Link to this heading">¶</a></h2>
|
|
||||||
<ul class="simple">
|
|
||||||
<li><p><a class="reference internal" href="#install-about"><span class="std std-ref">About mediacurator’s installation</span></a></p></li>
|
|
||||||
<li><p><a class="reference internal" href="#install-apt"><span class="std std-ref">Install from APT Repository</span></a></p></li>
|
|
||||||
<li><p><a class="reference internal" href="#install-pypi"><span class="std std-ref">Install from PyPi</span></a></p></li>
|
|
||||||
<li><p><a class="reference internal" href="#install-ffmpeg"><span class="std std-ref">Install FFmpeg</span></a></p></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
<section id="about-mediacurator-s-installation">
|
|
||||||
<span id="install-about"></span><h2>About mediacurator’s installation<a class="headerlink" href="#about-mediacurator-s-installation" title="Link to this heading">¶</a></h2>
|
|
||||||
<p>This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on <a class="reference external" href="https://github.com/fabquenneville/mediacurator.git">GitHub</a>.</p>
|
<p>This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on <a class="reference external" href="https://github.com/fabquenneville/mediacurator.git">GitHub</a>.</p>
|
||||||
</section>
|
|
||||||
<section id="install-from-apt-repository">
|
|
||||||
<span id="install-apt"></span><h2>Install from APT Repository<a class="headerlink" href="#install-from-apt-repository" title="Link to this heading">¶</a></h2>
|
|
||||||
<p>The <cite>mediacurator</cite> package is now available through an APT repository. To install it along with all its dependencies (including Python, required Python packages, and FFmpeg) on a Debian/Ubuntu compatible system, follow these steps:</p>
|
|
||||||
<ol class="arabic">
|
|
||||||
<li><p>Add the APT repository to your system by following the instructions at the <a class="reference external" href="https://debrepo.fabq.ca/">repository homepage</a>.</p></li>
|
|
||||||
<li><p>Update your package list:</p>
|
|
||||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>sudo<span class="w"> </span>apt<span class="w"> </span>update
|
|
||||||
</pre></div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li><p>Install <cite>mediacurator</cite>:</p>
|
|
||||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>sudo<span class="w"> </span>apt<span class="w"> </span>install<span class="w"> </span>-y<span class="w"> </span>mediacurator
|
|
||||||
</pre></div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<p>This will automatically install the <cite>mediacurator</cite> package and all its dependencies.</p>
|
|
||||||
</section>
|
|
||||||
<section id="install-from-pypi">
|
|
||||||
<span id="install-pypi"></span><h2>Install from PyPi<a class="headerlink" href="#install-from-pypi" title="Link to this heading">¶</a></h2>
|
|
||||||
<p>You can install the <cite>mediacurator</cite> package directly from PyPi using the following command:</p>
|
|
||||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>mediacurator
|
|
||||||
</pre></div>
|
|
||||||
</div>
|
|
||||||
<p><strong>Note:</strong> If FFmpeg is not already installed, please refer to the instructions in the <a class="reference internal" href="#install-ffmpeg"><span class="std std-ref">Install FFmpeg</span></a> section.</p>
|
|
||||||
</section>
|
|
||||||
<section id="install-ffmpeg">
|
<section id="install-ffmpeg">
|
||||||
<span id="id1"></span><h2>Install FFmpeg<a class="headerlink" href="#install-ffmpeg" title="Link to this heading">¶</a></h2>
|
<h2>Install FFmpeg<a class="headerlink" href="#install-ffmpeg" title="Link to this heading">¶</a></h2>
|
||||||
<p>To install FFmpeg, you can follow the instructions for your platform:</p>
|
<p>To install FFmpeg, you can follow the instructions for your platform:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><dl>
|
<li><dl>
|
||||||
@ -103,6 +65,13 @@ sudo<span class="w"> </span>apt<span class="w"> </span>install<span class="w"> <
|
|||||||
</pre></div>
|
</pre></div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
<section id="install-from-pypi">
|
||||||
|
<h2>Install from PyPi<a class="headerlink" href="#install-from-pypi" title="Link to this heading">¶</a></h2>
|
||||||
|
<p>You can install the <cite>mediacurator</cite> package directly from PyPi using the following command:</p>
|
||||||
|
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>mediacurator
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
@ -129,11 +98,8 @@ sudo<span class="w"> </span>apt<span class="w"> </span>install<span class="w"> <
|
|||||||
<ul class="current">
|
<ul class="current">
|
||||||
<li class="toctree-l1"><a class="reference internal" href="warnings.html">Warnings</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="warnings.html">Warnings</a></li>
|
||||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installation</a><ul>
|
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installation</a><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="#table-of-contents">Table of contents</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="#about-mediacurator-s-installation">About mediacurator’s installation</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="#install-from-apt-repository">Install from APT Repository</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="#install-from-pypi">Install from PyPi</a></li>
|
|
||||||
<li class="toctree-l2"><a class="reference internal" href="#install-ffmpeg">Install FFmpeg</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="#install-ffmpeg">Install FFmpeg</a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="#install-from-pypi">Install from PyPi</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="toctree-l1"><a class="reference internal" href="quickstart.html">Quickstart</a></li>
|
<li class="toctree-l1"><a class="reference internal" href="quickstart.html">Quickstart</a></li>
|
||||||
|
|||||||
@ -2,61 +2,8 @@
|
|||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
.. _install_toc:
|
|
||||||
|
|
||||||
Table of contents
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
* :ref:`install_about`
|
|
||||||
* :ref:`install_apt`
|
|
||||||
* :ref:`install_pypi`
|
|
||||||
* :ref:`install_ffmpeg`
|
|
||||||
|
|
||||||
.. _install_about:
|
|
||||||
|
|
||||||
About mediacurator's installation
|
|
||||||
---------------------------------
|
|
||||||
|
|
||||||
This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on `GitHub <https://github.com/fabquenneville/mediacurator.git>`_.
|
This package has been tested on GNU/Linux (e.g., Debian, Ubuntu, Fedora) and Windows, and requires FFmpeg to be installed. For now, it will be distributed on `GitHub <https://github.com/fabquenneville/mediacurator.git>`_.
|
||||||
|
|
||||||
.. _install_apt:
|
|
||||||
|
|
||||||
Install from APT Repository
|
|
||||||
----------------------------
|
|
||||||
|
|
||||||
The `mediacurator` package is now available through an APT repository. To install it along with all its dependencies (including Python, required Python packages, and FFmpeg) on a Debian/Ubuntu compatible system, follow these steps:
|
|
||||||
|
|
||||||
1. Add the APT repository to your system by following the instructions at the `repository homepage <https://debrepo.fabq.ca/>`_.
|
|
||||||
|
|
||||||
2. Update your package list:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
sudo apt update
|
|
||||||
|
|
||||||
3. Install `mediacurator`:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
sudo apt install -y mediacurator
|
|
||||||
|
|
||||||
This will automatically install the `mediacurator` package and all its dependencies.
|
|
||||||
|
|
||||||
.. _install_pypi:
|
|
||||||
|
|
||||||
Install from PyPi
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
You can install the `mediacurator` package directly from PyPi using the following command:
|
|
||||||
|
|
||||||
.. code-block:: bash
|
|
||||||
|
|
||||||
pip install mediacurator
|
|
||||||
|
|
||||||
**Note:** If FFmpeg is not already installed, please refer to the instructions in the :ref:`install_ffmpeg` section.
|
|
||||||
|
|
||||||
.. _install_ffmpeg:
|
|
||||||
|
|
||||||
Install FFmpeg
|
Install FFmpeg
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
@ -82,3 +29,13 @@ To verify your FFmpeg installation, you can run:
|
|||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
ffmpeg -version
|
ffmpeg -version
|
||||||
|
|
||||||
|
|
||||||
|
Install from PyPi
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
You can install the `mediacurator` package directly from PyPi using the following command:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
pip install mediacurator
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -9,7 +9,7 @@ setuptools.setup(
|
|||||||
name="mediacurator",
|
name="mediacurator",
|
||||||
version="1.0.1",
|
version="1.0.1",
|
||||||
author="Fabrice Quenneville",
|
author="Fabrice Quenneville",
|
||||||
author_email="fabrice@fabq.ca",
|
author_email="fab@fabq.ca",
|
||||||
url="https://github.com/fabquenneville/mediacurator",
|
url="https://github.com/fabquenneville/mediacurator",
|
||||||
download_url="https://pypi.python.org/pypi/mediacurator",
|
download_url="https://pypi.python.org/pypi/mediacurator",
|
||||||
project_urls={
|
project_urls={
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user