ffmpeg-for-python 0.3.9__tar.gz → 0.4.0__tar.gz

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.
Files changed (18) hide show
  1. {ffmpeg_for_python-0.3.9/ffmpeg_for_python.egg-info → ffmpeg_for_python-0.4.0}/PKG-INFO +9 -5
  2. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/README.md +1 -1
  3. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/__version__.py +1 -1
  4. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0/ffmpeg_for_python.egg-info}/PKG-INFO +9 -5
  5. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/MANIFEST.in +0 -0
  6. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/assets/ffmpeg-for-python-logo.png +0 -0
  7. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/__config__.py +0 -0
  8. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/__init__.py +0 -0
  9. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/__utils.py +0 -0
  10. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/exeptions.py +0 -0
  11. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/ffmpeg-bin/readme.md +0 -0
  12. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python/ffmpeg.py +0 -0
  13. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python.egg-info/SOURCES.txt +0 -0
  14. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python.egg-info/dependency_links.txt +0 -0
  15. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python.egg-info/not-zip-safe +0 -0
  16. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/ffmpeg_for_python.egg-info/top_level.txt +0 -0
  17. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/setup.cfg +0 -0
  18. {ffmpeg_for_python-0.3.9 → ffmpeg_for_python-0.4.0}/setup.py +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ffmpeg-for-python
3
- Version: 0.3.9
3
+ Version: 0.4.0
4
4
  Summary: Wrapper para o binário FFmpeg
5
5
  Author: PauloCesar-dev404
6
6
  Author-email: paulocesar0073dev404@gmail.com
7
7
  License: MIT
8
- Project-URL: Código Fonte, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.3.9.tar.gz
9
- Project-URL: lib, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.3.9-py3-none-any.whl
8
+ Project-URL: Código Fonte, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.4.0.tar.gz
9
+ Project-URL: lib, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.4.0-py3-none-any.whl
10
10
  Project-URL: GitHub, https://github.com/PauloCesar-dev404/ffmpeg-for-python
11
11
  Project-URL: Bugs/Melhorias, https://github.com/PauloCesar-dev404/ffmpeg-for-python/issues
12
12
  Project-URL: Documentação, https://github.com/PauloCesar-dev404/ffmpeg-for-python/wiki
@@ -54,7 +54,9 @@ output_video = 'output_video.mkv'
54
54
 
55
55
  # Executa o comando FFmpeg e exibe a saída
56
56
  try:
57
- ffmpeg.run(capture_output=True)
57
+ lines = ffmpeg.run(capture_output=True)
58
+ for l in lines:
59
+ print(l)
58
60
  except FFmpegExceptions as e:
59
61
  print("Erro ao executar FFmpeg:", e)
60
62
  ```
@@ -81,7 +83,9 @@ output_video = 'output_video.mp4'
81
83
 
82
84
  # Executa o comando FFmpeg e exibe a saída
83
85
  try:
84
- ffmpeg.run(capture_output=True)
86
+ lines = ffmpeg.run(capture_output=True)
87
+ for l in lines:
88
+ print(l)
85
89
  except FFmpegExceptions as e:
86
90
  print("Erro ao executar FFmpeg:", e)
87
91
  ```
@@ -4,7 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- ![Versão](https://img.shields.io/badge/version-0.3.5-orange)
7
+ ![Versão](https://img.shields.io/badge/version-0.4.0-orange)
8
8
  ![Licença](https://img.shields.io/badge/license-MIT-orange)
9
9
  [![Sponsor](https://img.shields.io/badge/💲Donate-yellow)](https://apoia.se/paulocesar-dev404)
10
10
 
@@ -1,4 +1,4 @@
1
- __version__ = '0.3.9'
1
+ __version__ = '0.4.0'
2
2
  __lib_name__ = 'ffmpeg_for_python'
3
3
  __autor__ = 'PauloCesar-dev404'
4
4
  __repo__ = 'https://github.com/PauloCesar-dev404/ffmpeg-for-python'
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ffmpeg-for-python
3
- Version: 0.3.9
3
+ Version: 0.4.0
4
4
  Summary: Wrapper para o binário FFmpeg
5
5
  Author: PauloCesar-dev404
6
6
  Author-email: paulocesar0073dev404@gmail.com
7
7
  License: MIT
8
- Project-URL: Código Fonte, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.3.9.tar.gz
9
- Project-URL: lib, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.3.9-py3-none-any.whl
8
+ Project-URL: Código Fonte, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.4.0.tar.gz
9
+ Project-URL: lib, https://raw.githubusercontent.com/PauloCesar-dev404/ffmpeg-for-python/main/ffmpeg_for_python-0.4.0-py3-none-any.whl
10
10
  Project-URL: GitHub, https://github.com/PauloCesar-dev404/ffmpeg-for-python
11
11
  Project-URL: Bugs/Melhorias, https://github.com/PauloCesar-dev404/ffmpeg-for-python/issues
12
12
  Project-URL: Documentação, https://github.com/PauloCesar-dev404/ffmpeg-for-python/wiki
@@ -54,7 +54,9 @@ output_video = 'output_video.mkv'
54
54
 
55
55
  # Executa o comando FFmpeg e exibe a saída
56
56
  try:
57
- ffmpeg.run(capture_output=True)
57
+ lines = ffmpeg.run(capture_output=True)
58
+ for l in lines:
59
+ print(l)
58
60
  except FFmpegExceptions as e:
59
61
  print("Erro ao executar FFmpeg:", e)
60
62
  ```
@@ -81,7 +83,9 @@ output_video = 'output_video.mp4'
81
83
 
82
84
  # Executa o comando FFmpeg e exibe a saída
83
85
  try:
84
- ffmpeg.run(capture_output=True)
86
+ lines = ffmpeg.run(capture_output=True)
87
+ for l in lines:
88
+ print(l)
85
89
  except FFmpegExceptions as e:
86
90
  print("Erro ao executar FFmpeg:", e)
87
91
  ```