Compare commits

..
2 Commits
Author SHA1 Message Date
Esa Kataja a45407384e chore: release v1.0.0 2025-04-17 13:58:54 +03:00
Esa Kataja 708c7dc4cd Add future features section with Streamlit UI preview plan 2025-04-17 13:51:27 +03:00
3 changed files with 34 additions and 1 deletions
+29
View File
@@ -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).
+4
View File
@@ -21,6 +21,10 @@ Designed for media archivists, home theater enthusiasts, and content creators, V
- Automatic generation of a reusable `encode.sh` script
- Shell completion support
## 🔮 Future Features
- Streamlit UI for interactive configuration and metadata preview.
## 🔧 Prerequisites
- **Python** >= 3.12
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "videnc-reeffed"
version = "0.1.0"
version = "1.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"