could be interesting to realtime 3d scanning
http://www.softkinetic.com/Products
useful links and automation
useful links, automation, batch, scripting, tcl/tk, python, cuda
html_menu
Tuesday, February 23, 2016
terrain.party DEM
http://terrain.party
http://terrain.party/api/export?name=test&box=-121.636607,46.763407,-121.741517,46.691541
http://terrain.party/api/export?name=test&box=-121.636607,46.763407,-121.741517,46.691541
Tuesday, January 5, 2016
Tuesday, December 29, 2015
Guide to Writing Shell Extensions (Windows)
http://www.codeproject.com/Articles/441/The-Complete-Idiot-s-Guide-to-Writing-Shell-Extens
Thursday, December 24, 2015
How can I realize Multi-User-Tagging in a local network? (xyplorer)
http://www.xyplorer.com/faq-topic.php?id=MUT
Admin.ini
Admin.ini
[Paths] FileTagDat=\\North\Share\XY\SharedTags.datAlso, very nice program for labeling icons in Windows is FileMarker.NET (FREE!)
Tuesday, December 22, 2015
icon in Tcl/Tk window
from tkinter import *
root = Tk()
root.iconbitmap(r'c:\Python32\DLLs\py.ico')
root.mainloop()
Friday, December 11, 2015
ffmpeg MPEG-4 Encoding Guide
ffmpeg -i input.avi -c:v libxvid output.avi
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid output.avi
Variable Bit Rate with qscale
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -qscale:v 3 -c:a libmp3lame -qscale:a 4 output.avi
Constant Bit Rate
You can target a bitrate with -b:v.
This is best used with two-pass encoding.
Adapting an example from the x264 encoding guide: your video is 10 minutes (600 seconds) long and an output of 50 MB is desired. Since bitrate = file size / duration:(50 MB * 8192 [converts MB to kilobits]) / 600 seconds = ~683 kilobits/s total bitrate 683k - 128k (desired audio bitrate) = 555k video bitrate
Two-pass example
ffmpeg -y -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 1 -an -f avi /dev/null
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 2 -c:a libmp3lame -b:a 128k output.avi
Note: Windows users should use NUL instead of /dev/null.
https://trac.ffmpeg.org/wiki/Encode/MPEG-4
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid output.avi
Variable Bit Rate with qscale
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -qscale:v 3 -c:a libmp3lame -qscale:a 4 output.avi
Constant Bit Rate
You can target a bitrate with -b:v.
This is best used with two-pass encoding.
Adapting an example from the x264 encoding guide: your video is 10 minutes (600 seconds) long and an output of 50 MB is desired. Since bitrate = file size / duration:(50 MB * 8192 [converts MB to kilobits]) / 600 seconds = ~683 kilobits/s total bitrate 683k - 128k (desired audio bitrate) = 555k video bitrate
Two-pass example
ffmpeg -y -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 1 -an -f avi /dev/null
ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 2 -c:a libmp3lame -b:a 128k output.avi
Note: Windows users should use NUL instead of /dev/null.
https://trac.ffmpeg.org/wiki/Encode/MPEG-4
Tuesday, December 1, 2015
SoX − Sound eXchange, the Swiss Army knife of audio manipulation
http://sox.sourceforge.net/sox.html
ffmpeg -ss 10 -t 6 -i input.mp3 output.mp3
ffmpeg -ss 10 -to 16 -i input.mp3 output.mp3
sox input.mp3 output.mp3 trim 10 6
Saturday, September 19, 2015
Start Maya from the command line
http://knowledge.autodesk.com/support/maya/learn-explore/caas/CloudHelp/cloudhelp/2015/ENU/Maya/files/Interface-overview-Start-Maya-from-the-command-line--htm.html
Thursday, September 17, 2015
Your 3D model online
Currently is very easy to share your work to public. And quality of rendering is really good!
This site support even PBR rendering, normal maps etc, and works very fast.
www.sketchfab.com/renderman.pro
and other site, but not so advanced
www.p3d.in
This site support even PBR rendering, normal maps etc, and works very fast.
www.sketchfab.com/renderman.pro
and other site, but not so advanced
www.p3d.in
Wednesday, August 26, 2015
How to make hibernation unavailable in Windows
To make hibernation unavailable, follow these steps:
- Click Start, and then type cmd in the Start Search box.
- In the search results list, right-click Command Prompt, and then click Run as Administrator.
- When you are prompted by User Account Control, click Continue.
- At the command prompt, type powercfg.exe /hibernate off, and then press Enter.
- Type exit, and then press Enter to close the Command Prompt window.
Thursday, July 23, 2015
exiftool - modify photo camera data in jpg files
exiftool -overwrite_original -Lens="Nikkor 50mm f/1.4 Ais" -ApertureValue="1.4" -FNumber="1.4" -FocalLength="50" *.jpg
Saturday, July 18, 2015
3d-coat - All Hot Keys
http://www.3d-coat.com/wiki/index.php/10.1_All_Hot_Keys
Subscribe to:
Posts (Atom)