SneakyTrinky
Member
- Sep 14, 2021
- 162
- 97
- 202
Now that's one of his hottest works yet. Runtime, sound, animation, and not a single x-ray in sight. I hope for more like this one.
uploaded it for you in case you still need itAnyone got the vid for this?
That's a transcode from gif...
well thats because this particular scene/project was only ever released as a gif as far as I knowThat's a transcode from gif...
Get-ChildItem -Filter *.mp4 | ForEach-Object {
$name = $_.BaseName
$in = "$name.mp4"
$out = "$name`1.mp4"
ffmpeg -i $in -ss 00:00:07 -c copy $out
}
does it work on mobile?just a small little qol script for people who are bothered by the 7 sec intro on every video of the author, create a new text file, input this code and save it as ".ps1" (powershell script). After that just put it into the folder with the videos to be cut and it will automatically cut all videos by 7 secs which is how long his intro is pretty much on every video (maybe not accurate by a few frames but never bothered me) and outputs it with the same file name +"1" added at the end:
I know it's nothing amazing/super basic, but maybe it will help some ppl save timeCode:Get-ChildItem -Filter *.mp4 | ForEach-Object { $name = $_.BaseName $in = "$name.mp4" $out = "$name`1.mp4" ffmpeg -i $in -ss 00:00:07 -c copy $out }
(you need ffmpeg installed and added to environment variables to use this directly in powershell/for the script to work)
no PC only, because of the requirements mentioned at the end of the postdoes it work on mobile?