This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -name "*.mkv" -exec ffmpeg -i {} -c:v libx264 -c:a mp3 -ar 44100 -ab 128k -vf scale=-2:360 {}-H264-SD.mp4 \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem make sure 7zip is in command path. You may have to add it | |
rem navagate to tar files | |
for /f "delims=" %a in ('dir /b *.tar') do 7z x "%a" | |
for /f "delims=" %a in ('dir /s /b *.rar') do 7z "%a" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think the main problem with using STL is when a custom template object is used and the compiler gets upset that it does not match up with the otehr standard template objects. That is because overloaded operators need to be written. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using debian derivative OS, use the PPA for blender. | |
This one https://launchpad.net/~thomas-schiex/+archive/ubuntu/blender |