A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| # Put this function to your .bashrc file. | |
| # Usage: mv oldfilename | |
| # If you call mv without the second parameter it will prompt you to edit the filename on command line. | |
| # Original mv is called when it's called with more than one argument. | |
| # It's useful when you want to change just a few letters in a long name. | |
| # | |
| # Also see: | |
| # - imv from renameutils | |
| # - Ctrl-W Ctrl-Y Ctrl-Y (cut last word, paste, paste) |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Autodesk.Revit.ApplicationServices; | |
| using Autodesk.Revit.DB; | |
| using Autodesk.Revit.UI; | |
| namespace ObjExport | |
| { | |
| internal class ElementCollect | |
| { |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| Autodesk Revit addins are generally loaded from the following locations. | |
| User Addins: | |
| %appdata%\Autodesk\Revit\Addins\ | |
| %appdata%\Autodesk\ApplicationPlugins\ | |
| Machine Addins (for all users of the machine): | |
| C:\ProgramData\Autodesk\Revit\Addins\ | |
| Addins packaged for the Autodesk Exchange store: |
| cmake_minimum_required(VERSION 2.8.4) | |
| project(py1) | |
| find_package(PythonLibs REQUIRED) | |
| include_directories(${PYTHON_INCLUDE_DIRS}) | |
| ADD_DEFINITIONS( -std=c++11 ) | |
| set(SOURCE_FILES main.cpp) |