HackerTrans
TopNewTrendsCommentsPastAskShowJobs

BGZq7

no profile record

comments

BGZq7
·12 mesi fa·discuss
Gajim is unrelated to Gaim. Gaim was renamed to Pidgin though, which still exists.
BGZq7
·anno scorso·discuss
I think the issue is those aren't integers, they are ffmpeg expressions evaluating to integers. See e.g. this example from the ffmpeg documentation:

  Draw a 2-pixel red 2.40:1 mask:
  drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
Implementing type checking on this correctly would require something like a DSL.
BGZq7
·anno scorso·discuss
This is interesting, and it's good to see something that's actively developed, but it seems to have some of the same issues as ffmpeg-python:

- It doesn't appear to have any way of specifying filters that do not have inputs, such as "color"

- There is no way to provide flags to Popen, e.g. to specify subprocess.CREATE_NO_WINDOW to avoid CMD windows popping up in a GUI app on Windows. This isn't a big deal for running ffmpeg itself, because you can just ffmpeg.compile() then run it manually, but that can't be done for ffprobe with ffmpeg.probe().

Edit: OK, figured out the source filter thing, ffmpeg.sources.color. Is there a way to use arbitrary source filters, like vfilter/afilter can do for regular ones?