-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the old code to give place to the new one
- Loading branch information
1 parent
578a3ff
commit e3d4545
Showing
9 changed files
with
1 addition
and
484 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1 @@ | ||
# CamBak | ||
This small tool automate the derushing process of your SD Cards for all your | ||
cameras. | ||
|
||
CamBak sort all your files from your SD Card per date, camera and per type of | ||
media and copy it to your computer or on a network volume. Here's is the | ||
destination architecture: | ||
``` | ||
/ *destination_folder* | ||
├── *date_of_shots (example: 2020-02-13)* | ||
│ └── *camera_name* | ||
│ ├── Pictures | ||
│ ├── RAW | ||
│ └── Videos | ||
``` | ||
|
||
## Supported cameras architectures | ||
* Sony (tested with NEX6 and HDR-AS series, a6400 and AS100V) | ||
|
||
If a camera is not supported, you can create a new file on the `cameras` | ||
folder with the brand name, add a class inherited of `Camera` and add each | ||
paths and extensions for each type of medias (glog can be used for paths). | ||
|
||
Here's is an example for Sony NEX cameras (file `Sony.py`): | ||
```python | ||
class SonyNex(Camera): | ||
"""General support for Sony NEX cameras (Alpha 5, 6, 7 and 9)""" | ||
|
||
img_folders = ["DCIM/*MSDCF"] | ||
raw_folders = img_folders | ||
vid_folders = ["PRIVATE/M4ROOT/CLIP"] | ||
|
||
img_extensions = [".JPG"] | ||
raw_extensions = [".ARW"] | ||
vid_extensions = [".MP4"] | ||
``` | ||
|
||
## Usage | ||
``` | ||
➜ python cambak --help | ||
usage: cambak [-h] -t TYPE -n NAME [-f] src dest | ||
positional arguments: | ||
src Source folder (mounted card/usb camera volume) | ||
dest Destination folder (local, network volume) | ||
optional arguments: | ||
-h, --help show this help message and exit | ||
-t TYPE, --type TYPE Type of camera | ||
-n NAME, --name NAME Name of the camera | ||
-f, --force Override if file already exists in the dest folder | ||
``` | ||
|
||
Example: | ||
```bash | ||
cambak /mnt/sd-card /mnt/moon-smb/cam-backups -t SonyNex -n A6400 | ||
``` | ||
|
||
## Installation | ||
WIP | ||
# Cambak |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.