Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing errors that stop the execution #61

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4057812
Minor fixes on the audio compress integration
JavierOramas Sep 15, 2020
f73026c
integrating with ver 0.1.9
JavierOramas Sep 16, 2020
d96052b
Merge branch 'master' of https://github.com/JavierOramas/video-diet
JavierOramas Sep 16, 2020
12628d7
fix crach inside conemu
fsadannn Sep 30, 2020
e6060c5
Merge branch 'master' of https://github.com/hiancdtrsnm/video-diet in…
JavierOramas Oct 11, 2020
04ca88e
copy file converted
JavierOramas Oct 11, 2020
016de58
Merge branch 'master' of https://github.com/hiancdtrsnm/video-diet in…
fsadannn Nov 20, 2020
f959623
fix error during encoding #36
fsadannn Nov 20, 2020
1a149e8
remove general Exceptio capture
fsadannn Nov 20, 2020
53a3843
verify if the converted file is actually smaller than the original
JavierOramas Nov 25, 2020
6c23fa4
-
JavierOramas Nov 25, 2020
437a5aa
Merge pull request #1 from fsadannn/develop
JavierOramas Dec 4, 2020
e1b601d
Merge pull request #2 from JavierOramas/size_check
JavierOramas Dec 4, 2020
00e4f03
optionally use av1 as encoder
JavierOramas Dec 6, 2020
6757991
1.11rc version
JavierOramas Dec 6, 2020
58a7599
Readme edit
JavierOramas Dec 6, 2020
1c2d39d
-
JavierOramas Dec 6, 2020
746192e
-
JavierOramas Dec 6, 2020
d044832
Bump pytest from 6.0.2 to 6.2.3
dependabot-preview[bot] Apr 5, 2021
fbd2bc9
?
JavierOramas Jan 9, 2022
814ae9a
Merge branch 'dependabot/pip/pytest-6.2.3'
JavierOramas Jan 9, 2022
5159550
try
JavierOramas Jan 9, 2022
718d4ac
fixing errors that break execution
JavierOramas Jan 10, 2022
1fe7dc7
requirements
JavierOramas Jan 10, 2022
a2b7517
remove progress bar after finish
JavierOramas Jan 10, 2022
8774471
log new size
JavierOramas Oct 27, 2022
51d4740
log with size
JavierOramas Oct 27, 2022
e43545d
keep metadata fo audio files
JavierOramas Oct 28, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@

# CHANGELOG

## [Not released]

### Added

* Add enlighten manager
* Add recommended installation method for poetry
* Add badges to README
* add ignore path or file and ignore file extension
* Add .deepsource.toml
* add repo url to pypi and licence
* add progress bar for video conversion
* add endline at the end of files
* add support for 10bits video, user aac as audio codec, keep all video metadata

### Fixed

* Fix old formats problem
* Fix bad comparation on path.suffix
* fix wron var name in exception
* fix paltform specific dependecies
* fix bug with encoding of the ffmpeg optput
* fix bug in get_codec
* fix ffprobe bug when the output is large
* fix mjpeg stream error
* fix crach inside conemu
* fix error during encoding #36

### Removed

* remove general Exceptio capture

### Others

* Initial Commit
* Update Readme
* Update typer dependencie
* Create LICENSE
* Create CONTRIBUTING.md
* Update README.md
* Update Readme
* Update Readme
* Capture error from ffmpeg and change Option by Argument
* Update Readme with the change of path as Argument
* Jump version and set min version in python 3.6
* Update Readme with installation instructions
* Convert old formats to mkv
* Jump version
* -
* -
* -
* updated readme and contributors
* -
* -
* Create dependabot.yml
* Bump pytest from 5.4.3 to 6.0.2
* Jump to version 0.1.7
* -
* -
* -
* -
* Create python-app.yml
* Update python-app.yml
* Create flake8.yml
* -
* -
* -
* audio-reduction
* integrating audio and video functions in one
* updated readme
* changing file for file_path on folder walk
* fixing errors on check_ignore function
* Delete .fuse_hidden0000049000000004
* Delete .fuse_hidden0000055300000005
* fixing all deepsource warnings but the ffmpeg._run.Error
* git pull
* Minor fixes on the audio compress integration
* Jump to version 0.1.8
* If destination file exist, delete if
* integrating with ver 0.1.9
* readjusting code according to flake8 rules
* -
* -
* -
* -
* chage to git wexpect version for use environ to control rader cocnsole
* restore wexpect version
* Jump to version 0.1.10
* copy file converted
* verify if the converted file is actually smaller than the original
* -
* optionally use av1 as encoder
* 1.11rc version
* Readme edit
* -
* -
* -
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ video-diet folder ~/Videos --ignore-path ~/Videos/subfolder
```
This option ignores all the files on ~/Videos/subfolder

## AV1 Support

To use AV1 instead of hevc add --codec av1 to the commnads above and that will use libaom-av1 instad of libx265 to encode the files

## Note

The video conversion can take some time. Depending on the original video properties; the conversion time can be longer than the video.
Expand Down
25 changes: 25 additions & 0 deletions literconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "0.1.11",
"version_ignore": [
"git",
"dist",
"egg",
"CHANGELOG",
".lock"
],
"changelog_sections": {
"Added": [
"add"
],
"Fixed": [
"fix"
],
"Removed": [
"remove"
]
},
"changelog_include_others": true,
"changelog_ignore_commits": [
"merge"
]
}
Loading