Collection Video WOOD CUBE collection [2024-01-19] [WOOD CUBE]

uwunator666

Newbie
Dec 19, 2024
49
153
113
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:

Code:
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
}
I know it's nothing amazing/super basic, but maybe it will help some ppl save time :)
(you need ffmpeg installed and added to environment variables to use this directly in powershell/for the script to work)
 

Jim2tolive

Member
Nov 23, 2019
352
171
267
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:

Code:
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
}
I know it's nothing amazing/super basic, but maybe it will help some ppl save time :)
(you need ffmpeg installed and added to environment variables to use this directly in powershell/for the script to work)
does it work on mobile?
 

lastdancer

New Member
Aug 4, 2022
2
2
64
I'm guessing the uncen at the moment is from Patreon? they used to give Icedrive links for FANBOX then suddenly changed this month starting with Rita :(
 
  • Like
Reactions: farerkinder