Search found 3 matches

by pabloab
Sun Sep 10, 2023 12:57 am
Forum: Features use and tips
Topic: Rotate plan plug-in
Replies: 15
Views: 10732

Re: Rotate plan plug-in

<r>Thanks Keet! All unviewable levels and furniture not flagged as visible are not selected, therefore not rotated. If I manually select all furniture from the list, I end with something completely broken.<br/>
<br/>
I wish SH3D had taggable/alternative branches for levels. Sometimes I want to see ...
by pabloab
Sat Sep 09, 2023 8:59 pm
Forum: Features use and tips
Topic: Rotate plan plug-in
Replies: 15
Views: 10732

Re: Rotate plan plug-in

<r>I couldn't rotate the plan successfully.<br/>
<br/>
There is Plan Rotator. From <URL url="http://www.sweethome3d.com/pluginsUserGuide.pdf"><s>[url=http://www.sweethome3d.com/pluginsUserGuide.pdf]</s>this PDF<e>[/url]</e></URL> it seems was by mickey2 (couldn't find it on plugins page, or <URL url ...
by pabloab
Thu Feb 23, 2023 5:29 am
Forum: Developers
Topic: Video format data
Replies: 5
Views: 7445

Re: Video format data

<r>I tweak the old .mov to be upscaled, slower, and in h264 .mp4, WhatsApp shareable.<br/>

<CODE><s>[code]</s>#!/usr/bin/env bash
for file in *.mov; do
scale_factor="2"
slow_factor="4"
ffmpeg -y \
-i "${file}" \
-c copy \
-an \
-vf scale=iw*${scale_factor}:ih*${scale_factor} \
-filter:v ...