Skip to main content

Python program to merge video files created by Tesla dashcam

Project description

Python program that provides an easy method to merge saved Tesla Dashcam footage into a single video.

When saving Tesla Dashcam footage a folder is created on the USB drive and within it multiple MP4 video files are created. Currently the dashcam leverages three (3) cameras (front, left repeater, and right repeater) and will create a file for each of them. Every minute is stored into a separate file as well. This means that when saving dashcam footage there is a total of 30 files video files for every 10 minutes. Each block of 10 minutes is put into a folder, thus often there will be multiple folders.

Using this program, one can combine all of these into 1 video file. The video of the three cameras is merged into one picture, with the video for all the minutes further put together into one.

By default sub-folders are included when retrieving the video clips. One can, for example, just provide the path to the respective SavedClips folder (i.e. e:\TeslaCam\SavedClips for Windows if drive has letter E, /Volumes/Tesla/TeslaCam/SavedClips on MacOS if drive is mounted on /Volumes/Tesla) and then all folders that were created within the SavedClips folder will be processed. There will be a movie file for each folder. When using the option –merge there will also be a movie file created combining the movies from all the folders into 1. Use parameter –exclude_subdirs to only scan the folder provided and not any of the sub-folders.

There is also the option to monitor for a disk to become available with the TeslaCam folder on it. Video files will be automatically processed once the USB (or SD) drive has been inserted. After processing the program will wait again until this drive has been ejected and then a new one is inserted at which point it will start processing again (unless –monitor_once parameter was used in which case the program will exit). Note processing will occur if the drive is already inserted and the program is then started with this option.

When using the –monitor (or –monitor_once) option, video files from a folder will not be re-processed if the movie file for that folder already exist. It is still possible for –monitor_once to provide a output filename instead of just a folder. For –monitor the filename will be ignored and the files will be created within the path specified using a unique name instead.

Using the option –monitor_trigger_file one can have it check for existence of a certain file or folder for starting processing instead of waiting for the disk with the TeslaCam folder to become available. Once available processing will start, if a trigger file was provided then upon completion of processing the file will then be deleted. If it was a folder then it will wait for the folder to be removed by something else (or for example link removed) and then wait again for it to appear again. If no source folder is provided then folder SavedClips will be processed with assumption it is in the same location as the trigger file. If source folder is an absolute path (i.e. /Videos/Tesla) then that will be used as source location. If it is a relative path (i.e. Tesla/MyVideos) then the path will be considered to be relative based on the location provided for the trigger file.

When using –merge, the name of the resulting video file will be appended with the current timestamp of processing when –monitor parameter is used, this to ensure that the resulting video file is always unique. Option –chapter_offset can be provided to offset the chapter markers within the merged video. A negative number would result in the chapter marker being set not at the start for the folder video but instead be set provided number of seconds before the end of that video. For example, with 10 minute video for a folder a value of -120 would result in the chapter markers being set 2 minutes before the end of that video. A positive number will result in chapter marker being set to provided number of seconds after the start of the video. Value of 600 would result in chapter markers being set 5 minutes into that folder’s video.

If –merge is not provided as an option and there are multiple sub-folders then the filename (if provided in output) will be ignored. Instead the files will all be placed in the folder identified by the output parameter, one movie file for each folder. Only exception to this if there was only 1 folder.

By default created videos will be stored within the Tesla_Dashcam folder in the Videos folder (Windows), Movies folder (MacOS), or Videos folder within the user’s home directory (Linux). This can be overriden using the –output parameter.

If no source has been provided then it would be the same as providing parameters –monitor_once and SavedClips as source. This means that the program will wait until it discovers the USB or SD card with the TeslaCam folder is present and once present it will start processing all the folders within the SavedClips folder. Once processing of all folders is complete it will then exit.

Binaries

Stand-alone binaries can be retrieved:

ffmpeg is included within the respective package. ffmpeg is a separately licensed product under the GNU Lesser General Public License (LGPL) version 2.1 or later. FFmpeg incorporates several optional parts and optimizations that are covered by the GNU General Public License (GPL) version 2 or later. If those parts get used the GPL applies to all of FFmpeg. For more information on ffmpeg license please see: https://www.ffmpeg.org/legal.html

Windows binary of ffmpeg was downloaded from: https://ffmpeg.zeranoe.com/builds/

MacOS binary of ffmpeg was downloaded from: https://evermeet.cx/ffmpeg/

Notes

The video files for the same minute between the 3 cameras are not always the same length. If there is a difference in their duration then a black screen will be shown for the camera which video ended before the others (within the minute). It is thus possible within a video to see a black screen for one of the cameras, and then when that minute has passed for it to show video again.

The date and time shown within the video comes from the timestamp embedded in the saved videos themselves, not from the filename. Date and time shown within video is based on PC’s timezone. Tesla embeds the date and time within the video file, and that is what will be displayed comes. This means that the video might not start exactly at 0 seconds. In the provided video examples one can see that it starts at 16:42:35 and not 16:42:00.

Current caveat however is that the order for concatenating all the videos together is based on filename. (See TODO)

Requirements

This package relies on ffmpeg to be installed, this is a free, open source cross-platform solution to convert video. The created executables for Windows and MacOS include an ffmpeg version.

If not using the executables (Windows and MacOS) then Python 3.7 or higher is required.

Installation

Downloading the respective bundle (ZIP for Windows, DMG for MacOS) and unpacking this in a location of your choosing is sufficient to install this.

If downloading the source files (i.e. for Linux) then Python has to be installed as well. I recommend in that case to install the package from pypi using pip to ensure all package requirements (except for ffmpeg) are met.

This package is available from pypi.

Install from pypi is done through:

pip install tesla_dashcam

Usage

usage: tesla_dashcam.py [-h] [--version] [--exclude_subdirs | --merge]
                        [--chapter_offset CHAPTER_OFFSET] [--output OUTPUT]
                        [--keep-intermediate] [--delete_source]
                        [--no-notification]
                        [--layout {WIDESCREEN,FULLSCREEN,PERSPECTIVE}]
                        [--scale CLIP_SCALE] [--mirror | --rear] [--swap]
                        [--no-swap] [--slowdown SLOW_DOWN]
                        [--speedup SPEED_UP]
                        [--encoding {x264,x265} | --enc ENC] [--no-gpu]
                        [--no-timestamp] [--halign {LEFT,CENTER,RIGHT}]
                        [--valign {TOP,MIDDLE,BOTTOM}] [--font FONT]
                        [--fontsize FONTSIZE] [--fontcolor FONTCOLOR]
                        [--quality {LOWEST,LOWER,LOW,MEDIUM,HIGH}]
                        [--compression {ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow}]
                        [--ffmpeg FFMPEG] [--monitor] [--monitor_once]
                        [--monitor_trigger MONITOR_TRIGGER]
                        [--check_for_update] [--no-check_for_update]
                        [--include_test]
                        [source [source ...]]

tesla_dashcam - Tesla DashCam & Sentry Video Creator

positional arguments:
  source                Folder(s) containing the saved camera files. Filenames
                        can be provided as well to manage individual clips.
                        (default: None)

optional arguments:
  -h, --help            show this help message and exit
  --version             show program''s version number and exit
  --exclude_subdirs     Do not search sub folders for video files to process.
                        (default: False)
  --merge               Merge the video files from different folders into 1
                        big video file. (default: False)
  --chapter_offset CHAPTER_OFFSET
                        Offset in seconds for chapters in merged video.
                        Negative offset is \# of seconds before the end of the
                        subdir video, positive offset if \# of seconds after
                        the start of the subdir video. (default: 0)
  --output OUTPUT       Path/Filename for the new movie file. Intermediate files will be stored in same folder.
                         (default: /Users/ehendrix/Movies/Tesla_Dashcam/)
  --keep-intermediate   Do not remove the intermediate video files that are
                        created (default: False)
  --delete_source       Delete the processed files on the TeslaCam drive.
                        (default: False)
  --no-notification     Do not create a notification upon completion.
                        (default: True)
  --layout {WIDESCREEN,FULLSCREEN,PERSPECTIVE}
                        Layout of the created video.
                            FULLSCREEN: Front camera center top, side cameras underneath it.
                            WIDESCREEN: Output from all 3 cameras are next to each other.
                            PERSPECTIVE: Front camera center top, side cameras next to it in perspective.
                         (default: FULLSCREEN)
  --scale CLIP_SCALE    Set camera clip scale, scale of 1 is 1280x960 camera clip. Defaults:
                            WIDESCREEN: 1/2 (640x480, video is 1920x480)
                            FULLSCREEN: 1/2 (640x480, video is 1280x960)
                            PERSPECTIVE: 1/4 (320x240, video is 980x380)
                         (default: None)
  --mirror              Video from side cameras as if being viewed through the
                        sidemirrors. Cannot be used in combination with
                        --rear. (default: True)
  --rear                Video from side cameras as if looking backwards.
                        Cannot be used in combination with --mirror. (default:
                        False)
  --swap                Swap left and right cameras, default when layout
                        FULLSCREEN with --rear option is chosen. (default:
                        None)
  --no-swap             Do not swap left and right cameras, default with all
                        other options. (default: None)
  --slowdown SLOW_DOWN  Slow down video output. Accepts a number that is then
                        used as multiplier, providing 2 means half the speed.
                        (default: None)
  --speedup SPEED_UP    Speed up the video. Accepts a number that is then used
                        as a multiplier, providing 2 means twice the speed.
                        (default: None)
  --encoding {x264,x265}
                        Encoding to use for video creation.
                            x264: standard encoding, can be viewed on most devices but results in bigger file.
                            x265: newer encoding standard but not all devices support this yet.
                         (default: x264)
  --enc ENC             Provide a custom encoding for video creation.
                        Note: when using this option the --gpu option is ignored. To use GPU hardware acceleration specify a encoding that provides this. (default: None)
  --no-gpu              Use GPU acceleration, only enable if supported by hardware.
                         MAC: All MACs with Haswell CPU or later  support this (Macs after 2013).
                              See following link as well:
                                 https://en.wikipedia.org/wiki/List_of_Macintosh_models_grouped_by_CPU_type#Haswell
                         Windows and Linux: PCs with NVIDIA graphic cards support this as well.
                                            For more information on supported cards see:
                                 https://developer.nvidia.com/video-encode-decode-gpu-support-matrix (default: False)
  --ffmpeg FFMPEG       Path and filename for ffmpeg. Specify if ffmpeg is not
                        within path. (default: tesla_dashcam/ffmpeg)

Timestamp:
  Options for timestamp:

  --no-timestamp        Include timestamp in video (default: False)
  --halign {LEFT,CENTER,RIGHT}
                        Horizontal alignment for timestamp (default: CENTER)
  --valign {TOP,MIDDLE,BOTTOM}
                        Vertical Alignment for timestamp (default: BOTTOM)
  --font FONT           Fully qualified filename (.ttf) to the font to be
                        chosen for timestamp. (default:
                        /Library/Fonts/Arial.ttf)
  --fontsize FONTSIZE   Font size for timestamp. Default is scaled based on
                        video scaling. (default: None)
  --fontcolor FONTCOLOR
                        Font color for timestamp. Any color is accepted as a color string or RGB value.
                        Some potential values are:
                            white
                            yellowgreen
                            yellowgreen@0.9
                            Red
                        :    0x2E8B57
                        For more information on this see ffmpeg documentation for color: https://ffmpeg.org/ffmpeg-utils.html#Color (default: white)

Video Quality:
  Options for resulting video quality and size:

  --quality {LOWEST,LOWER,LOW,MEDIUM,HIGH}
                        Define the quality setting for the video, higher
                        quality means bigger file size but might not be
                        noticeable. (default: LOWER)
  --compression {ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow}
                        Speed to optimize video. Faster speed results in a
                        bigger file. This does not impact the quality of the
                        video, just how much time is used to compress it.
                        (default: medium)

Monitor for TeslaDash Cam drive:
  Parameters to monitor for a drive to be attached with folder TeslaCam in
  the root.

  --monitor             Enable monitoring for drive to be attached with
                        TeslaCam folder. (default: False)
  --monitor_once        Enable monitoring and exit once drive with TeslaCam
                        folder has been attached and files processed.
                        (default: False)
  --monitor_trigger MONITOR_TRIGGER
                        Trigger file to look for instead of waiting for drive
                        to be attached. Once file is discovered then
                        processing will start, file will be deleted when
                        processing has been completed. If source is not
                        provided then folder where file is located will be
                        used as source. (default: None)

Update Check:
  Check for updates

  --check_for_update    Check for updates, do not do anything else. (default:
                        False)
  --no-check_for_update
                        A check for new updates is performed every time. With
                        this parameter that can be disabled (default: False)
  --include_test        Include test (beta) releases when checking for
                        updates. (default: False)

Layout:

FULLSCREEN: Resolution: 1280x960

+---------------+----------------+
|           Front Camera         |
+---------------+----------------+
| Left Camera   |  Right Camera  |
+---------------+----------------+

Video example: https://youtu.be/P5k9PXPGKWQ

PERSPECTIVE: Resolution: 980x380

+---------------+----------------+---------------+
| Diagonal Left | Front Camera   | Diagonal Right|
| Camera        |                | Camera        |
+---------------+----------------+---------------+

Video example: https://youtu.be/fTUZQ-Ej5AY

WIDESCREEN: Resolution: 1920x480

+---------------+----------------+---------------+
| Left Camera   | Front Camera   | Right Camera  |
+---------------+----------------+---------------+

Video example: https://youtu.be/nPleIhVxyhQ

Examples

To show help:

  • Windows:

tesla_dashcam.exe -h
  • Mac:

tesla_dashcam -h
  • Linux:

python3 tesla_dashcam.py -h

Using defaults:

  • Windows:

tesla_dashcam.exe c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py /home/me/Tesla/2019-02-27_14-02-03

Using defaults but not knowing what to provide for source path. Goal to only process the SavedClips and only do this once. Store the resulting video files in c:Tesla (Windows) or /Users/me/Desktop/Tesla (MacOS). Delete the files from the USB (or SD) when processed.

  • Windows:

tesla_dashcam.exe --monitor_once --delete_source --output c:\Tesla SavedClips
  • Mac:

tesla_dashcam --monitor_once --delete_source --output /Users/me/Desktop/Tesla SavedClips
  • Linux:

python3 tesla_dashcam.py --monitor_once --delete_source --output /home/me/Tesla SavedClips

Specify video file and location:

  • Windows:

tesla_dashcam.exe --output c:\Tesla\My_Video_Trip.mp4 c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --output /Users/me/Desktop/Tesla/My_Video_Trip.mp4 /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --output /home/me/Tesla/My_Video_Trip.mp4 /home/me/Tesla/2019-02-27_14-02-03

Without timestamp:

  • Windows:

tesla_dashcam.exe --no-timestamp c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --no-timestamp /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --no-timestamp /home/me/Tesla/2019-02-27_14-02-03

Put timestamp center top in yellowgreen:

  • Windows:

tesla_dashcam.exe --fontcolor yellowgreen@0.9 -halign CENTER -valign TOP c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --fontcolor yellowgreen@0.9 -halign CENTER -valign TOP /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --fontcolor yellowgreen@0.9 -halign CENTER -valign TOP /home/me/Tesla/2019-02-27_14-02-03

Layout so front is shown top middle with side cameras below it and font size of 24 (FULLSCREEN):

  • Windows:

tesla_dashcam.exe --layout FULLSCREEN --fontsize 24 c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --layout FULLSCREEN --fontsize 24 /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --layout FULLSCREEN --fontsize 24 /home/me/Tesla/2019-02-27_14-02-03

Specify location of ffmpeg binay (in case ffmpeg is not in path):

  • Windows:

tesla_dashcam.exe --ffmpeg c:\ffmpeg\ffmpeg.exe c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --ffmpeg /Applications/ffmpeg /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --ffmpeg /home/me/ffmpeg /home/me/Tesla/2019-02-27_14-02-03

Layout of PERSPECTIVE with a different font for timestamp and path for ffmpeg:

  • Windows: Note how to specify the path, : and needs to be escaped by putting a in front of them.

tesla_dashcam.exe --layout PERSPECTIVE --ffmpeg c:\ffmpeg\ffmpeg.exe --font "C\:\\Windows\\Fonts\\Courier New.ttf" c:\Tesla\2019-02-27_14-02-03
  • Mac:

tesla_dashcam --layout PERSPECTIVE --ffmpeg /Applications/ffmpeg --font '/Library/Fonts/Courier New.ttf' /Users/me/Desktop/Tesla/2019-02-27_14-02-03
  • Linux:

python3 tesla_dashcam.py --layout PERSPECTIVE --ffmpeg /Applications/ffmpeg --font '/usr/share/fonts/truetype/freefont/Courier New.ttf' /home/me/Tesla/2019-02-27_14-02-03

Enable monitoring for the Tesla Dashcam USB (or SD) to be inserted and then process all the files (both RecentClips and SavedClips). Increase speed of resulting videos tenfold and store all videos in folder specified by output. Delete the source files afterwards:

tesla_dashcam.exe --speed 10 --output c:\Tesla\ --monitor .
  • Mac:

tesla_dashcam /Users/me/Desktop/Tesla --monitor .
  • Linux:

python3 tesla_dashcam.py /home/me/Desktop/Tesla --monitor .

Enable one-time monitoring for the Tesla Dashcam USB (or SD) to be inserted and then process all the files from SavedClips. Note that for source we provide the folder name (SavedClips), the complete path will be created by the program. Slowdown speed of resulting videos to half, show left/right cameras as if looking backwards, store all videos in folder specified by output. Also create a movie file that has them all merged together.

  • Windows:

tesla_dashcam.exe --slowdown 2 --rear --merge --output c:\Tesla\ --monitor_once SavedClips
  • Mac:

tesla_dashcam --slowdown 2 --rear --merge --output /Users/me/Desktop/Tesla --monitor_once SavedClips
  • Linux:

python3 tesla_dashcam.py --slowdown 2 --rear --merge --output /home/me/Tesla --monitor_once SavedClips

Enable monitoring using a trigger file (or folder) to start processing all the files from SavedClips. Note that for source we provide the folder name (SavedClips), the complete path will be created by the program using the path of the trigger file (if it is a file) or folder. Videos are stored in folder specified by –output. Videos from all the folders are then merged into 1 folder with name TeslaDashcam followed by timestamp of processing (timestamp is added automatically). Chapter offset is set to be 2 minutes (120 seconds) before the end of the respective folder clips.

  • Windows:

tesla_dashcam.exe --merge --chapter_offset -120 --output c:\Tesla\TeslaDashcam.mp4 --monitor --monitor_trigger x:\TeslaCam\start_processing.txt SavedClips
  • Mac:

tesla_dashcam --merge --chapter_offset -120 --output /Users/me/Desktop/Tesla --monitor --monitor_trigger /Users/me/TeslaCam/start_processing.txt SavedClips
  • Linux:

python3 tesla_dashcam.py --merge --chapter_offset -120 --output /home/me/Tesla --monitor --monitor_trigger /home/me/TeslaCam/start_processing.txt SavedClips

Argument (Parameter) file

It is also possible to supply a text file with all the respective arguments (parameters) instead of having to enter them each time on the command line. Arguments within the text file can all be on one (1) line, on separate lines, or a combination thereof.

Having a text file (i.e. my_preference.txt) with the following contents:

--speedup 10 --rear
--merge --output /home/me/Tesla
--monitor_once SavedClips

And then executing tesla_dashcam as follows:

  • Windows:

tesla_dashcam.exe @my_preference.txt
  • Mac:

tesla_dashcam @my_preference.txt
  • Linux:

python3 tesla_dashcam.py @my_preference.txt

Would result in the same as if those parameters were provided on the command itself. One can also combine a parameter file with parameters on the command line. Preference is given to what occurs first. For example, if providing the following arguments:

--speedup 2 @my_preference.txt

Then the clips will only be sped up two-fold instead of 10-fold as –speedup 2 occurs before –speedup 10 from the parameter file. But with:

@my_preference.txt --speedup 2

the clips will be sped up ten-fold.

Support

There is no official support nor should there be any expectation for support to be provided. As per license this is provided As-Is. However, any issues or requests can be reported on GitHub and I will do my best (time permitting) to provide support.

Release Notes

0.1.4:
  • Initial Release

0.1.5:
  • Fixed: font issue on Windows

0.1.6:
  • Changed: Output folder is now optional

  • Changed: Source is positional argument (in preparation for self-contained executable and drag&drop)

0.1.7:
  • New: Added perspective layout (thanks to lairdb from model3ownersclub forums to provide this layout).

  • New: Added font size option to set the font size for timestamp

  • New: Added font color option to set the font color for timestamp

  • New: Added halign option to horizontally align timestamp (left, center, right)

  • New: Added valign option to vertically align timestamp (top, middle, bottom)

  • Changed: Perspective is now default layout.

0.1.8:
  • New: Added GPU hardware accelerated encoding for Mac and PCs with NVIDIA. On Mac it is enabled by default

  • New: Added option to have video from side cameras be shown as if one were to look at it through the mirror (option –mirror). This is now the default

  • New: Added option –rear to show video from side cameras as if one was looking to the rear of the car. This was how it was originally.

  • New: Added option to swap left and right camera in output. Mostly beneficial in FULLSCREEN with –rear option as it then seems like it is from a rear camera

  • New: Added option to speedup (–speedup) or slowdown (–slowdown) the video.

  • New: Added option to provide a different encoder for ffmpeg to use. This is for those more experienced with ffmpeg.

  • New: Added a default font path for Linux systems

  • New: Added –version to get the version number

  • New: Releases will now be bundled in a ZIP file (Windows) or a DMG file (MacOS) with self-contained executables in them. This means Python does not need to be installed anymore (located on github)

  • New: ffmpeg executable binary for Windows and MacOS added into respective bundle.

  • Changed: For output (–output) one can now also just specify a folder name. The resulting filename will be based on the name of the folder it is then put in

  • Changed: If there is only 1 video file for merging then will now just rename intermediate (or copy if –keep-intermediate is set).

  • Changed: The intermediate files (combining of the 3 cameras into 1 video file per minute) will now be written to the output folder if one provided.

  • Changed: The intermediate files will be deleted once the complete video file is created. This can be disabled through option –keep-intermediate

  • Changed: Set FULLSCREEN back as the default layout

  • Changed: Help output (-h) will show what default value is for each parameter

  • Changed: Cleaned up help output

  • Changed: Default path for ffmpeg will be set to same path as tesla_dashcam is located in, if not exist then default will be based that ffmpeg is part of PATH.

  • Fixed: Now able to handle if a camera file is missing, a black screen will be shown for that duration for the missing file

  • Fixed: Fixed (I believe) cygwin path for fonts.

0.1.9:
  • New: Added scanning of sub-folders clip files. Each folder will be processed and resulting movie file created. This can be disabled through parameter –exclude_subdirs

  • New: Added option to merge the video files from multiple sub-folders into 1 movie file. Use parameter –merge to enable.

  • New: Added option to monitor if the USB drive (or SD card) is inserted in the PC and then automatically start processing the files. Use parameter –monitor to enable. Parameter –monitor_once will stop monitoring and exit after 1st time drive was inserted. Parameter –delete_source will delete the source files and folder once the movie file for that folder has been created.

  • New: Added update checker to determine if there is a newer version, additional arguments to just perform check (–check_for_update), include test releases (–include_test), or disable always checking for updates (–no-check_for_update)

  • New: ffmpeg is part of the tesla_dashcam executable

  • New: Desktop notification when processing starts (when using monitor) and when it completes.

  • New: DockerFile added making it easy to run tesla_dashcam within Docker (jeanfabrice)

  • New: Time it took to create the video files will now be provided upon completion of processing.

  • Changed: Formatted output to easily show progress

  • Fixed: Will now handle it much better if a video file from a camera is corrupt (i.e. zero-byte file).

  • Fixed: combining clips to movie would not use GPU or provided encoding.

  • Fixed: Added additional check that video file exist before merging into movie.

0.1.10:
  • New: Added scale option to set the scale of the clips and thus resulting video. (–scale)

  • New: Added option to specify a parameter file using @<filename> where parameters can be located in. (@<filename>)

  • New: One can now specify multiple sources instead of just 1.

  • New: Individual file(s) can now be provided as a source as well (only 1 camera filename has to be provided to get all 3)

  • New: Source is now optional, if not provided then it will be same as –monitor_once with as source SavedClips.

  • Changed: Timestamp within video will now be used for concatenation of the clips at folder level and all (–merge option) instead of filename. This will ensure that even when crossing timezones the order of the video is still accurate.

  • Changed: –delete_source will delete source files when specified even when –monitor or –monitor_once is not specified Issue #28

  • Changed: output will default to VideosTesla_Dashcam (Windows) Movies/Tesla_Dashcam (MacOS), or VideosTesla_Dashcam (Linux) if not output folder specified.

  • Changed: Filename for the folder video files will not have start and end timestamp in local timezone instead of just folder name. Issue #30 and Issue #33

  • Changed: Updated release notes for each release better identifying what is new, changed, and fixed.

  • Fixed: issue where sometimes encoding with GPU would fail by also allowing software based encoding

  • Fixed: traceback when unable to retrieve latest release from GitHub

  • Fixed: running tesla_dashcam when installed using pip. Issue #23 and Issue #31

  • Fixed: Folder clip would be removed if only 1 set in folder with same name as folder name if keep_intermediate not specified

  • Fixed: Font issue in Windows (hopefully final fix) Issue #29

  • Fixed: Python version has to be 3.7 or higher due to use of capture_output Issue #19

0.1.11:
  • Fixed: Traceback when getting ffmpeg path in Linux Issue #39

  • Fixed: Running tesla_dashcam when installed using pip. Issue #38

  • Fixed: Just providing a filename for output would result in traceback.

  • Fixed: When providing a folder as output it would be possible that the last folder name was stripped potentially resulting in error.

0.1.12:
  • New: Added chapter markers in the concatenated movies. Folder ones will have a chapter marker for each intermediate clip, merged one has a chapter marker for each folder.

  • New: Option –chapter_offset for use with –merge to offset the chapter marker in relation to the folder clip.

  • New: Added flags -movstart and +faststart for video files better suited with browsers etc. (i.e. YouTube). Thanks to sf302 for suggestion.

  • New: Option to add trigger (–monitor_trigger_file) to use existence of a file/folder/link for starting processing instead of USB/SD being inserted.

  • Changed: Method for concatenating the clips together has been changed resulting in massive performance improvement (less then 1 second to do concatenation). Big thanks to sf302!

  • Fixed: Folders will now be deleted if there are 0-byte or corrupt video files within the folder Issue #40

  • Fixed: Providing a filename for –output would create a folder instead and not setting resulting file to filename provided Issue #52

  • Fixed: Thread exception in Windows that ToastNotifier does not have an attribute classAtom (potential fix). Issue #54

  • Fixed: Traceback when invalid output path (none-existing) is provided or when unable to create target folder in given path.

  • Fixed: Including sub dirs did not work correctly, it would only grab the 1st folder.

  • Fixed: When using monitor, if . was provided as source then nothing would be processed. Now it will process everything as intended.

  • Fixed: File created when providing a filename with –output and –monitor option did not put timestamp in filename to ensure unique filenames

  • Fixed: Argument to get release notes was provided incorrectly when checking for updates. Thank you to demonbane for fixing.

TODO

  • Allow exclusion of camera(s) in output (i.e. don’t include right, or don’t include front, …).

  • Implement option to crop individual camera output

  • Provide option to copy or move from source to output folder before starting to process

  • Develop method to run as a service with –monitor option

  • GUI Front-end

  • Support drag&drop of video folder (supported in Windows now, MacOS not yet)

  • Add object detection (i.e. people) and possible output when object was detected

  • Saving of options

  • Option to specify resolutions as an argument

  • Option for end-user layout

  • Use timestamp in video to ensure full synchronization between the 3 cameras

  • Add option for source/output to be S3 bucket (with temp folder for creating temporary files)

  • Develop Web Front-End

  • Develop method to have run in AWS, allowing user to upload video files and interact using Web Front-End

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tesla_dashcam-0.1.12.tar.gz (51.2 kB view hashes)

Uploaded Source

Built Distribution

tesla_dashcam-0.1.12-py2.py3-none-any.whl (34.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page