Skip to content

Commit

Permalink
Update to FFMPEG 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Jan 22, 2024
1 parent 04eb615 commit c7f102c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Add avif and heic image format support
- Update to Exiv2 0.27.7
- Update to Tika 2.9.1
- Uppdate to FFMPEG 6.1
- Add Python 3.12 Support
- Add Pydantic v2 Support
- Dropped Python 3.8 Support
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Add avif and heic image format support
- Update to Exiv2 0.27.7
- Update to Tika 2.9.1
- Uppdate to FFMPEG 6.1
- Add Python 3.12 Support
- Add Pydantic v2 Support
- Dropped Python 3.8 Support
Expand Down
8 changes: 4 additions & 4 deletions iscc_sdk/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@
"darwin-64": "3797fd0e6d5f922c095a12d860baccb49d90cef74accf49d219d4cea1b0d2bd7",
}

FFMPEG_VERSION = "4.4.1"
FFMPEG_VERSION = "6.1"
FFMPEG_URLS = {
"windows-64": f"{BASE_URL}/ffmpeg-{FFMPEG_VERSION}-win-64.zip",
"linux-64": f"{BASE_URL}/ffmpeg-{FFMPEG_VERSION}-linux-64.zip",
"darwin-64": f"{BASE_URL}/ffmpeg-{FFMPEG_VERSION}-osx-64.zip",
}
FFMPEG_CHECKSUMS = {
"windows-64": "b77405ee98580971cb36c4ca0c7f888283dcffc347c282b304abbb3c1eee6fc2",
"linux-64": "a8ac9f1e28ad31ca366dba17dd0c486926d533d76ffc9b47a976308245ab064e",
"darwin-64": "33f980b5b59ddfc663170a419110e9504527c092b21ba6592c525f7a7c183887",
"linux-64": "e96b9796ad7404151eabaaaea30151fb9226554ee87d5164161fd20de4482dd1",
"darwin-64": "ba9313f7bf8c46ebe60b8f39fa6de1657c94f51fd14d77c6e02ef09fab6ff5bc",
"windows-64": "06814a07bff1f281a5282110ebff2ccb088cd9ffda35fce5af63b8e88cc2385a",
}

FPCALC_VERSION = "1.5.1"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def test_video_thumbnail(mp4_file):
assert isinstance(thumb, Image.Image)


def test_video_thumbnail_fail(ogv_file):
thumb = idk.video_thumbnail(ogv_file)
def test_video_thumbnail_fail(docx_file):
thumb = idk.video_thumbnail(docx_file)
assert thumb is None


Expand Down

0 comments on commit c7f102c

Please sign in to comment.