Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #109761

Re: movie from pictures

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From MRAB <python@mrabarnett.plus.com>
Newsgroups comp.lang.python
Subject Re: movie from pictures
Date Thu, 9 Jun 2016 20:25:32 +0100
Lines 27
Message-ID <mailman.123.1465500343.2306.python-list@python.org> (permalink)
References <e2c6ea94-99da-45ee-a2a9-fd3613b1a318@googlegroups.com> <7e57c662-a6c2-441d-a46e-49458439250f@googlegroups.com> <16301530-a24b-42c6-bcf6-007c4eb85aca@googlegroups.com> <njce7v$lni$1@ger.gmane.org> <d70b41fd-7e11-343a-7e1e-258b8c3cd838@mrabarnett.plus.com>
Mime-Version 1.0
Content-Type text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding 7bit
X-Trace news.uni-berlin.de TiPCLjWT/VQzROZFYmgqbQKc4zMRKKmneaT1iYfK8Q1g==
Return-Path <python@mrabarnett.plus.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.017
X-Spam-Evidence '*H*': 0.97; '*S*': 0.00; 'preferable': 0.09; 'python': 0.10; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subprocess': 0.16; 'wrote:': 0.16; 'variable': 0.18; 'skip:" 30': 0.20; 'arguments': 0.22; 'pass': 0.22; 'tried': 0.24; 'import': 0.24; 'header:In- Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'separate': 0.27; 'command-line': 0.29; 'code:': 0.29; 'work.': 0.30; 'lets': 0.33; 'skip:- 10': 0.34; 'file': 0.34; 'skip:c 30': 0.35; 'list:': 0.35; 'path': 0.35; 'something': 0.35; 'reply.': 0.35; 'but': 0.36; 'should': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'names': 0.38; 'thank': 0.38; 'subject:from': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'your': 0.60; 'more': 0.63; 'otten': 0.84; 'hand,': 0.97
X-CM-Score 0.00
X-CNFS-Analysis v=2.1 cv=K//fZHiI c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=IkcTkHD0fZMA:10 a=ZGTHokUVeuYSdlPn3b4A:9 a=HeQECjkz1z7i3tMD:21 a=1ftKI4YTflAd2Uf2:21 a=QEXdDO2ut3YA:10
X-AUTH mrabarnett@:2500
User-Agent Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1
In-Reply-To <njce7v$lni$1@ger.gmane.org>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.22
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
X-Mailman-Original-Message-ID <d70b41fd-7e11-343a-7e1e-258b8c3cd838@mrabarnett.plus.com>
X-Mailman-Original-References <e2c6ea94-99da-45ee-a2a9-fd3613b1a318@googlegroups.com> <7e57c662-a6c2-441d-a46e-49458439250f@googlegroups.com> <16301530-a24b-42c6-bcf6-007c4eb85aca@googlegroups.com> <njce7v$lni$1@ger.gmane.org>
Xref csiph.com comp.lang.python:109761

Show key headers only | View raw


On 2016-06-09 19:58, Peter Otten wrote:
> Nev wrote:
>
>> Thank you for your reply. I tried something like this in python code:
>>
>> from subprocess import call
>> call(["ffmpeg -framerate 4/1 -start_number 1 -i
>> C:\\Projects\\data2\\img_%05d.png -c:v libx264 -r 30 -pix_fmt yuv420p
>> C:\\Projects\\data2\\movie.mp4"])
>>
>> But it did not work. I get FileNotFoundError: [WinError 2] The system
>> cannot find the file specified..
>
> You have to pass the command-line arguments as separate items in the list:
>
> call(["ffmpeg",
>       "-framerate", "4/1",
>       "-start_number", "1",
>       "-i", "C:\\Projects\\data2\\img_%05d.png",
>       ... # and so on
>       ])
>
You should also give it the full path of ffmpeg.

>> On the other hand, in-loop solution would be more preferable since it lets
>> me to use variable names of the images and paths..

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

movie from pictures nevzat.guler@gmail.com - 2016-06-08 15:11 -0700
  Re: movie from pictures Lawrence D’Oliveiro <lawrencedo99@gmail.com> - 2016-06-08 17:32 -0700
    Re: movie from pictures Nev <nevzat.guler@gmail.com> - 2016-06-09 08:54 -0700
      Re: movie from pictures Peter Otten <__peter__@web.de> - 2016-06-09 20:58 +0200
      Re: movie from pictures MRAB <python@mrabarnett.plus.com> - 2016-06-09 20:25 +0100
      Re: movie from pictures alex wright <wrightalexw@gmail.com> - 2016-06-10 17:31 -0400
      Re: movie from pictures Karim <kliateni@gmail.com> - 2016-06-11 19:26 +0200

csiph-web