python-video-converter icon indicating copy to clipboard operation
python-video-converter copied to clipboard

Python Video Converter (ffmpeg wrapper)

Results 29 python-video-converter issues
Sort by recently updated
recently updated
newest added

When i was trying to covert a WMV file it shows this error Traceback (most recent call last): File "/virtualenvs/celery/local/lib/python2.7/site-packages/celery/app/trace.py", line 240, in trace_task R = retval = fun(_args, *_kwargs)...

To enable fast seeking we need to specify option `-ss` before input parameter `-i`. However in python-video-converter by default will use slow seeking because option `-ss` placed after input `-i`,...

It would be good if this script would allow converting subtitles also. Example ffmpeg usage: `C:\ffmpeg.exe -i "D:\input.mkv" -vcodec copy -acodec copy -scodec mov_text -map 0 D:\output.mp4` MP4 output requires...

It could be cool to be able to give a Buffer of FileLike Object to `probe` and `convert` methods. For example when you work with a Django FileField, you want...

Hey, I am using this code: ``` python from converter import Converter c = Converter() conv = c.convert('input.mp4', 'video-transcoded.mkv', { 'format': 'mkv', 'audio': { 'codec': 'ac3', }, 'video': { 'codec':...

setup.py doesn't contain a pypi license classifier and there's also no license file in the root of the tree, so I'm wondering what license the project is actually using.

I got this error. What am I doing wrong? `File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/converter/__init__.py", line 162, in convert info = self.ffmpeg.probe(infile) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/converter/ffmpeg.py", line 367, in probe info.parse_ffprobe(raw) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/converter/ffmpeg.py", line 253, in...

Would be good if the MediaStreamInfo object had a language code.