peg-this 3.0.0__tar.gz → 3.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of peg-this might be problematic. Click here for more details.
- {peg_this-3.0.0/src/peg_this.egg-info → peg_this-3.0.1}/PKG-INFO +23 -15
- {peg_this-3.0.0 → peg_this-3.0.1}/README.md +11 -8
- peg_this-3.0.1/pyproject.toml +35 -0
- peg_this-3.0.1/src/peg_this/peg_this.py +720 -0
- {peg_this-3.0.0 → peg_this-3.0.1/src/peg_this.egg-info}/PKG-INFO +23 -15
- peg_this-3.0.1/src/peg_this.egg-info/requires.txt +4 -0
- peg_this-3.0.0/pyproject.toml +0 -27
- peg_this-3.0.0/src/peg_this/peg_this.py +0 -520
- peg_this-3.0.0/src/peg_this.egg-info/requires.txt +0 -4
- {peg_this-3.0.0 → peg_this-3.0.1}/LICENSE +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/setup.cfg +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/src/peg_this/__init__.py +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/src/peg_this.egg-info/SOURCES.txt +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/src/peg_this.egg-info/dependency_links.txt +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/src/peg_this.egg-info/entry_points.txt +0 -0
- {peg_this-3.0.0 → peg_this-3.0.1}/src/peg_this.egg-info/top_level.txt +0 -0
|
@@ -1,34 +1,42 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: peg_this
|
|
3
|
-
Version: 3.0.
|
|
4
|
-
Summary: A powerful
|
|
3
|
+
Version: 3.0.1
|
|
4
|
+
Summary: A powerful, intuitive command-line video editor suite, built on FFmpeg.
|
|
5
5
|
Author-email: Hariharen S S <thisishariharen@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/hariharen9/ffmpeg-this
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/hariharen9/ffmpeg-this/issues
|
|
8
|
+
Project-URL: Releases, https://github.com/hariharen9/ffmpeg-this/releases
|
|
6
9
|
Classifier: Programming Language :: Python :: 3
|
|
7
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
11
|
Classifier: Operating System :: OS Independent
|
|
9
|
-
|
|
12
|
+
Classifier: Topic :: Multimedia :: Video :: Conversion
|
|
13
|
+
Classifier: Topic :: Multimedia :: Video :: Non-Linear Editor
|
|
14
|
+
Requires-Python: >=3.8
|
|
10
15
|
Description-Content-Type: text/markdown
|
|
11
16
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: ffmpeg-python
|
|
13
|
-
Requires-Dist: questionary
|
|
14
|
-
Requires-Dist: rich
|
|
15
|
-
Requires-Dist: Pillow
|
|
17
|
+
Requires-Dist: ffmpeg-python==0.2.0
|
|
18
|
+
Requires-Dist: questionary>=2.0.0
|
|
19
|
+
Requires-Dist: rich>=13.0.0
|
|
20
|
+
Requires-Dist: Pillow>=9.0.0
|
|
16
21
|
Dynamic: license-file
|
|
17
22
|
|
|
18
23
|
# 🎬 ffmPEG-this
|
|
19
24
|
|
|
25
|
+
> Your Video editor within CLI 🚀
|
|
26
|
+
|
|
20
27
|
A powerful and user-friendly batch script for converting, manipulating, and inspecting media files using the power of FFmpeg. This script provides a simple command-line menu to perform common audio and video tasks without needing to memorize complex FFmpeg commands.
|
|
21
28
|
|
|
22
29
|
## ✨ Features
|
|
23
30
|
|
|
24
|
-
- **
|
|
25
|
-
- **
|
|
26
|
-
- **
|
|
27
|
-
- **
|
|
28
|
-
- **
|
|
29
|
-
- **Audio
|
|
30
|
-
- **Audio
|
|
31
|
-
- **Batch Conversion
|
|
31
|
+
- **Inspect Media Properties**: View detailed information about video and audio streams, including codecs, resolution, frame rate, bitrates, and more.
|
|
32
|
+
- **Convert & Transcode**: Convert videos and audio to a wide range of popular formats (MP4, MKV, WebM, MP3, FLAC, WAV, GIF) with simple quality presets.
|
|
33
|
+
- **Join Videos (Concatenate)**: Combine two or more videos into a single file. The tool automatically handles differences in resolution and audio sample rates for a seamless join.
|
|
34
|
+
- **Trim (Cut) Videos**: Easily cut a video to a specific start and end time without re-encoding for fast, lossless clips.
|
|
35
|
+
- **Visually Crop Videos**: An interactive tool that shows you a frame of the video, allowing you to click and drag to select the exact area you want to crop.
|
|
36
|
+
- **Extract Audio**: Rip the audio track from any video file into MP3, FLAC, or WAV.
|
|
37
|
+
- **Remove Audio**: Create a silent version of your video by stripping out all audio streams.
|
|
38
|
+
- **Batch Conversion**: Convert all media files in the current directory to a specified format in one go.
|
|
39
|
+
|
|
32
40
|
|
|
33
41
|
## 🚀 Usage
|
|
34
42
|
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
# 🎬 ffmPEG-this
|
|
2
2
|
|
|
3
|
+
> Your Video editor within CLI 🚀
|
|
4
|
+
|
|
3
5
|
A powerful and user-friendly batch script for converting, manipulating, and inspecting media files using the power of FFmpeg. This script provides a simple command-line menu to perform common audio and video tasks without needing to memorize complex FFmpeg commands.
|
|
4
6
|
|
|
5
7
|
## ✨ Features
|
|
6
8
|
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
- **
|
|
11
|
-
- **
|
|
12
|
-
- **Audio
|
|
13
|
-
- **Audio
|
|
14
|
-
- **Batch Conversion
|
|
9
|
+
- **Inspect Media Properties**: View detailed information about video and audio streams, including codecs, resolution, frame rate, bitrates, and more.
|
|
10
|
+
- **Convert & Transcode**: Convert videos and audio to a wide range of popular formats (MP4, MKV, WebM, MP3, FLAC, WAV, GIF) with simple quality presets.
|
|
11
|
+
- **Join Videos (Concatenate)**: Combine two or more videos into a single file. The tool automatically handles differences in resolution and audio sample rates for a seamless join.
|
|
12
|
+
- **Trim (Cut) Videos**: Easily cut a video to a specific start and end time without re-encoding for fast, lossless clips.
|
|
13
|
+
- **Visually Crop Videos**: An interactive tool that shows you a frame of the video, allowing you to click and drag to select the exact area you want to crop.
|
|
14
|
+
- **Extract Audio**: Rip the audio track from any video file into MP3, FLAC, or WAV.
|
|
15
|
+
- **Remove Audio**: Create a silent version of your video by stripping out all audio streams.
|
|
16
|
+
- **Batch Conversion**: Convert all media files in the current directory to a specified format in one go.
|
|
17
|
+
|
|
15
18
|
|
|
16
19
|
## 🚀 Usage
|
|
17
20
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "peg_this"
|
|
7
|
+
version = "3.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Hariharen S S", email="thisishariharen@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "A powerful, intuitive command-line video editor suite, built on FFmpeg."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Topic :: Multimedia :: Video :: Conversion",
|
|
19
|
+
"Topic :: Multimedia :: Video :: Non-Linear Editor"
|
|
20
|
+
]
|
|
21
|
+
dependencies = [
|
|
22
|
+
"ffmpeg-python==0.2.0",
|
|
23
|
+
"questionary>=2.0.0",
|
|
24
|
+
"rich>=13.0.0",
|
|
25
|
+
"Pillow>=9.0.0"
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
"Homepage" = "https://github.com/hariharen9/ffmpeg-this"
|
|
30
|
+
"Bug Tracker" = "https://github.com/hariharen9/ffmpeg-this/issues"
|
|
31
|
+
"Releases" = "https://github.com/hariharen9/ffmpeg-this/releases"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
[project.scripts]
|
|
35
|
+
peg_this = "peg_this.peg_this:main"
|