Compare commits
2
Commits
21383a391a
...
v1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a45407384e | ||
|
|
708c7dc4cd |
@@ -0,0 +1,29 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.0.0] - 2025-04-17
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Initial release of **videnc-reeffed** CLI for encoding videos.
|
||||||
|
- Support for:
|
||||||
|
- Specifying input video file and IMDb ID validation.
|
||||||
|
- Removing subtitles with `--nosubtitles`.
|
||||||
|
- Encoding presets (`--preset`) and CRF settings (`--crf`).
|
||||||
|
- Selecting original media type (`--original-media-type`).
|
||||||
|
- Adjusting film grain amount (`--film-grain`).
|
||||||
|
- Implemented core functions:
|
||||||
|
- `run_ffprobe` for extracting stream metadata.
|
||||||
|
- `parse_streams` to model video, audio, and subtitle streams.
|
||||||
|
- `apply_stream_settings` to apply encoding parameters.
|
||||||
|
- `confirm_and_write_script` to generate and confirm overwrite of `encode.sh` script.
|
||||||
|
- Integrated modules and helpers:
|
||||||
|
- `models/streams` data models: `VideoFile`, `VideoStream`, `AudioStream`, `SubtitleStream`, `OriginalMediaType`.
|
||||||
|
- `movie_details.get_movie_details` for enriching metadata.
|
||||||
|
- `lib/fs.write_shell_script` for file system operations.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Adopted `src` directory layout according to standard Python packaging.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- None (initial release).
|
||||||
@@ -21,6 +21,10 @@ Designed for media archivists, home theater enthusiasts, and content creators, V
|
|||||||
- Automatic generation of a reusable `encode.sh` script
|
- Automatic generation of a reusable `encode.sh` script
|
||||||
- Shell completion support
|
- Shell completion support
|
||||||
|
|
||||||
|
## 🔮 Future Features
|
||||||
|
|
||||||
|
- Streamlit UI for interactive configuration and metadata preview.
|
||||||
|
|
||||||
## 🔧 Prerequisites
|
## 🔧 Prerequisites
|
||||||
|
|
||||||
- **Python** >= 3.12
|
- **Python** >= 3.12
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "videnc-reeffed"
|
name = "videnc-reeffed"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
description = "Add your description here"
|
description = "Add your description here"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user