yeref 0.25.52__py3-none-any.whl → 0.25.54__py3-none-any.whl
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.
yeref/yeref.py
CHANGED
@@ -16808,7 +16808,15 @@ async def item_to_dynamic_sticker(bot, chat_id, input_file, PACK_TYPE, PACK_KIND
|
|
16808
16808
|
# rounded = 'split[s0][s1];[s0]pad=width=512:height=512:color=black[s2];[s1]scale=512:512:force_original_aspect_ratio=decrease[s3];[s2][s3]overlay=W-w-1:H-h-1,drawbox=0:0:iw:ih:color=black@0.0[rounded]'
|
16809
16809
|
print(f'here 2, {i_input_data=}, {os.path.exists(input_file)=}')
|
16810
16810
|
|
16811
|
-
|
16811
|
+
if is_circle:
|
16812
|
+
ffmpeg_command = [
|
16813
|
+
'ffmpeg', '-i', i_input_data, '-filter_complex', rounded, '-filter_complex_threads', '2',
|
16814
|
+
'-c:v', 'libvpx-vp9', '-r', str(fps),
|
16815
|
+
'-b:v', '0', '-crf', '20', '-quality', 'good', '-cpu-used', '1',
|
16816
|
+
'-s', pixels_str, '-pix_fmt', 'yuva420p', '-t', '3', '-an', '-y', file_webm
|
16817
|
+
]
|
16818
|
+
else:
|
16819
|
+
ffmpeg_command = ['ffmpeg', '-i', i_input_data, '-filter_complex', rounded, '-filter_complex_threads', '2',
|
16812
16820
|
'-c:v', 'libvpx-vp9', '-r', str(fps), '-b:v', bitrate, '-crf', '30', '-s', pixels_str,
|
16813
16821
|
'-pix_fmt', 'yuva420p', '-t', '3', '-an', '-y', file_webm]
|
16814
16822
|
print(f"{ffmpeg_command=}")
|
@@ -0,0 +1,8 @@
|
|
1
|
+
yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
|
2
|
+
yeref/l_.py,sha256=Pc6C6WIIV1MZ_tv7wAkIUJttn0yUC-ewqjTdrX8VDeA,1117680
|
3
|
+
yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
|
4
|
+
yeref/yeref.py,sha256=QDQxThrwzzsjF50gIOc0tjO9Q3WJVSo266YVqsFTiMI,1026717
|
5
|
+
yeref-0.25.54.dist-info/METADATA,sha256=O2_Vx-MgW0TMsQpsZmnPrZwgqaLyavonB0JaIos8xJg,119
|
6
|
+
yeref-0.25.54.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
+
yeref-0.25.54.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
|
8
|
+
yeref-0.25.54.dist-info/RECORD,,
|
yeref-0.25.52.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
|
2
|
-
yeref/l_.py,sha256=Pc6C6WIIV1MZ_tv7wAkIUJttn0yUC-ewqjTdrX8VDeA,1117680
|
3
|
-
yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
|
4
|
-
yeref/yeref.py,sha256=ipm7YpxLwY1pKdBDoKWCzildZndwM0YlrNEgpB2NcT0,1026299
|
5
|
-
yeref-0.25.52.dist-info/METADATA,sha256=qVHqx63edqWZGBX99dXV_ZyF9pUSUdc0gNkGizquIrE,119
|
6
|
-
yeref-0.25.52.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
-
yeref-0.25.52.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
|
8
|
-
yeref-0.25.52.dist-info/RECORD,,
|
File without changes
|
File without changes
|