You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,8 @@ Usage of fibr:
182
182
[exif] Aggregate EXIF data per folder on start {FIBR_EXIF_AGGREGATE_ON_START}
183
183
-exifDateOnStart
184
184
[exif] Change file date from EXIF date on start {FIBR_EXIF_DATE_ON_START}
185
+
-exifDirectAccess
186
+
[exif] Use Exas with direct access to filesystem (no large file upload to it, send a GET request) {FIBR_EXIF_DIRECT_ACCESS}
185
187
-exifGeocodeURL string
186
188
[exif] Nominatim Geocode Service URL. This can leak GPS metadatas to a third-party (e.g. "https://nominatim.openstreetmap.org") {FIBR_EXIF_GEOCODE_URL}
directAccess: flags.New(prefix, "exif", "DirectAccess").Default(false, nil).Label("Use Exas with direct access to filesystem (no large file upload to it, send a GET request)").ToBool(fs),
geocodeURL: flags.New(prefix, "exif", "GeocodeURL").Default("", overrides).Label(fmt.Sprintf("Nominatim Geocode Service URL. This can leak GPS metadatas to a third-party (e.g. \"%s\")", publicNominatimURL)).ToString(fs),
87
90
dateOnStart: flags.New(prefix, "exif", "DateOnStart").Default(false, nil).Label("Change file date from EXIF date on start").ToBool(fs),
Copy file name to clipboardExpand all lines: pkg/exif/exif_test.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ func TestFlags(t *testing.T) {
13
13
}{
14
14
{
15
15
"simple",
16
-
"Usage of simple:\n -aggregateOnStart\n\t[exif] Aggregate EXIF data per folder on start {SIMPLE_AGGREGATE_ON_START}\n -dateOnStart\n\t[exif] Change file date from EXIF date on start {SIMPLE_DATE_ON_START}\n -geocodeURL string\n\t[exif] Nominatim Geocode Service URL. This can leak GPS metadatas to a third-party (e.g. \"https://nominatim.openstreetmap.org\") {SIMPLE_GEOCODE_URL}\n -maxSize int\n\t[exif] Max file size (in bytes) for extracting exif (0 to no limit) {SIMPLE_MAX_SIZE} (default 209715200)\n -uRL string\n\t[exif] Exif Tool URL (exas) {SIMPLE_URL} (default \"http://exas:1080\")\n",
16
+
"Usage of simple:\n -aggregateOnStart\n\t[exif] Aggregate EXIF data per folder on start {SIMPLE_AGGREGATE_ON_START}\n -dateOnStart\n\t[exif] Change file date from EXIF date on start {SIMPLE_DATE_ON_START}\n -directAccess\n\t[exif] Use Exas with direct access to filesystem (no large file upload to it, send a GET request) {SIMPLE_DIRECT_ACCESS}\n -geocodeURL string\n\t[exif] Nominatim Geocode Service URL. This can leak GPS metadatas to a third-party (e.g. \"https://nominatim.openstreetmap.org\") {SIMPLE_GEOCODE_URL}\n -maxSize int\n\t[exif] Max file size (in bytes) for extracting exif (0 to no limit) {SIMPLE_MAX_SIZE} (default 209715200)\n -uRL string\n\t[exif] Exif Tool URL (exas) {SIMPLE_URL} (default \"http://exas:1080\")\n",
0 commit comments