This commit is contained in:
gilesb
2025-10-25 18:17:56 +01:00
parent d5fa0bcb12
commit 9e7672c05a
39 changed files with 689 additions and 0 deletions

24
hamlet/README.md Normal file
View File

@@ -0,0 +1,24 @@
# Hamlet
[rose-ash.com](https://rose-ash.com/nt-live-hamlet/)
All NT marketing materials are available [here](https://nationaltheatrelive.egnyte.com/fl/xwH93vMf7yBm)
## [rose ash poster(hamlet-final.jpg)](hamlet-final.jpg)
![poster](hamlet-final.jpg)
```bash
bash hamlet.sh
```
## trailer
[original](https://nationaltheatrelive.egnyte.com/fl/xwH93vMf7yBm#folder-link/NTL%202026%20-%20Hamlet/Online%20Content/Teaser%20Trailer?p=e2888687-20fb-4dfb-b6c2-6182291e2e4e)
```bash
bash hamlet-teaser.sh
```
[rose ash version](https://www.youtube.com/watch?v=X8rO2932m8o)

BIN
hamlet/hamlet-final.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
hamlet/hamlet-landscape.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

6
hamlet/hamlet-teaser.sh Normal file
View File

@@ -0,0 +1,6 @@
bash ../remove-text.sh -i hamlet-teaser.mp4 -o hamlet-1.mp4 --x 650 --y 480 --w 650 --h 200 --start 45.1 #--preview
bash ../text.sh -i hamlet-1.mp4 -o hamlet-2.mp4 --start 45.1 --end 48.5 --fs 150 --dy 0 --text "ROSE ASH VILLAGE HALL" --fontfile "./BebasNeue-Regular.ttf"
bash ../text.sh -i hamlet-2.mp4 -o hamlet-output.mp4 --start 46 --end 49 --fs 100 --dy 250 --text "Friday, January 30th 2026" --fontfile "./BebasNeue-Regular.ttf"
rm hamlet-1.mp4
rm hamlet-2.mp4

19
hamlet/hamlet.sh Normal file
View File

@@ -0,0 +1,19 @@
ffmpeg -y -i hamlet-landscape.png -vf "drawtext=fontfile='../Nuninto/static/Nunito-Bold.ttf':\
text='ROSE ASH VILLAGE HALL':fontcolor=white:fontsize=30:x=740:y=570:" -frames:v 1 out.jpg
ffmpeg -y -i out.jpg -vf "drawtext=fontfile='../Nuninto/static/Nunito-Bold.ttf':\
text='Friday 30th January':fontcolor=white:fontsize=35:x=765:y=610" -frames:v 1 out-1.jpg
ffmpeg -y -i out-1.jpg -vf "drawtext=fontfile='../Nuninto/static/Nunito-Bold.ttf':\
text='£10 on the door or in advance':fontcolor=white:fontsize=15:x=815:y=660" -frames:v 1 out-2.jpg
ffmpeg -y -i out-2.jpg -vf "drawtext=fontfile='../Nuninto/static/Nunito-Bold.ttf':\
text='Doors open 7pm; play starts 7.30':fontcolor=white:fontsize=15:x=800:y=825" -frames:v 1 out-3.jpg
ffmpeg -y -i out-3.jpg -vf "drawtext=fontfile='../Nuninto/static/Nunito-Bold.ttf':\
text='https\://rose-ash.com':fontcolor=white:fontsize=20:x=10:y=830" -frames:v 1 hamlet-final.jpg
rm out*.jpg