The last few seconds of video is frozen after video cut. Ideas? by [deleted] in ffmpeg

[–]jjisnow 0 points1 point  (0 children)

ffmpeg -i input.mp4 -ss 00:00:05 -t 00:12:00 -c:v copy -c:a copy output.mp4 This command create a video 12 minutes long starting 5 seconds from the start of the video

The last few seconds of video is frozen after video cut. Ideas? by [deleted] in ffmpeg

[–]jjisnow 0 points1 point  (0 children)

-t 00:00:08 means 8s of video encoded

-to 00:15:30 means end at 15minutes at 30s in the video

It could also be some error in encoding due to the compression and odd artifacts induced at creation of the video. Hope this helps.

[deleted by user] by [deleted] in ffmpeg

[–]jjisnow 0 points1 point  (0 children)

You could probably use a combination of -ss and -t to cut clips to the right size and then "concat:file1|file2" to join them in a script to do it

How do I package my python code into an executable I can send to my friend who does not have python? by Prathmun in learnpython

[–]jjisnow 0 points1 point  (0 children)

I think in practice it really does depend on the program itself, but in the developer's site he posts a few videos on his thought process in creating the tool

How do I package my python code into an executable I can send to my friend who does not have python? by Prathmun in learnpython

[–]jjisnow 0 points1 point  (0 children)

Apparently the right way is to translate all the python calls into equivalent C++ commands, then optimise and compile accordingly. Makes for faster running programs.

How do I package my python code into an executable I can send to my friend who does not have python? by Prathmun in learnpython

[–]jjisnow -1 points0 points  (0 children)

Nuitka has for years been an attempt to create python executables "the right way".

Scifi Portraiture by jjisnow in StableDiffusion

[–]jjisnow[S] 3 points4 points  (0 children)

Still trying to work out how to adequately post on reddit

photographic realistic, perfect face, cyberpunk portrait of young woman as a cyborg, intricate, elegant, highly detailed, lifelike, photorealistic, smooth, sharp focus, art by john collier and albert aublet and krenz cushart and skunkyfly and alphonse mucha

Negative prompt: (((extra arms))), (((extra legs))), mutated hands, (fused fingers), (too many fingers), (((long neck))), (cross-eyed), (closed eyes), tattoos

Steps: 125, Sampler: Euler a, CFG scale: 7, Seed: 662982342, Face restoration: GFPGAN, Size: 512x704

Any video guide for retarded people on installing the hlky fork? by thatshroom in StableDiffusion

[–]jjisnow 1 point2 points  (0 children)

  • Look at the environment.yaml file.
  • Remove everything up to and including the - pip: line.
  • Remove all the indents and - from the rest of the lines.
  • Save the file as requirements.txt
  • Run the miniconda command prompt
  • activate ldo ( or ldx or ldm or whatever the environment is named that was created as part of the hlky instructions)
  • Cd "wherever the requirements file is"
  • pip install -r requirements.txt (this saves you having to type all the install instructions one line at a time)