Skip to content

Commit

Permalink
update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
mgineer85 committed Jan 24, 2025
1 parent 46779c6 commit 8b1724e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
11 changes: 11 additions & 0 deletions docs/reference/foldersandurls.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@ The original is directly from image source and no processing was applied.
The unprocessed version (sizes small, medium large) represend the original without any filter or pipeline stages from postprocessing applied.
The processed version (sizes small, medium large) have all configured filters applied.

### v5 and later

| Item | Subfolder | Web access |
|---|---|---|
| original from camera | /media/unprocessed_original | - |
| processed L version (full) | /media/processed_full | `/media/full/{mediaitem_id}` |
| processed M version (preview) | - | `/media/preview/{mediaitem_id}` |
| processed S version (thumbnail) | - | `/media/thumbnail/{mediaitem_id}` |

### v4 and before

| Item | Subfolder | Web access |
|---|---|---|
| original from camera | /media/original | `/media/original` |
Expand Down
10 changes: 7 additions & 3 deletions docs/setup/qrshareservice.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,14 @@ Once setup, the prinicple is as following:
If the shareservice is not what you want, you could create a local WiFi. Users log in that WiFi and can download directly from the photobooth.
Setup the URL for the QR code to point to the image you would like to let the user download. There are several versions of the images available, see the [list of mediaitem's directories](../reference/foldersandurls.md#mediaitems).

Below an example URL to use in the QR code. {filename} gets replaced by the acutal filename. Replace the IP and port by the actual data.
Below an example URL to use in the QR code. {identifier} gets replaced by the acutal filename. Replace the IP and port by the actual data.

```http title="QR code URL example"
http://192.168.0.1:8000/media/processed/full/{filename}
```http title="QR code URL example for v5 and later"
http://localhost:8000/media/full/{identifier}
```

```http title="QR code URL example before v4"
http://localhost:8000/media/processed/full/{filename}
```

## Method C: Create your own sharing solution
Expand Down

0 comments on commit 8b1724e

Please sign in to comment.