fli_video 0.0.2 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/generators/back/scripts/01-get-technical-design-and-feature-list.rb +32 -0
  3. data/.builders/generators/back/scripts/02-get-feature-list-and-components.rb +42 -0
  4. data/.builders/generators/back/scripts/03-get-structure.rb +104 -0
  5. data/.builders/generators/back/scripts/generated/application-structure.json +231 -0
  6. data/.builders/generators/back/scripts/generated/features-and-components.md +988 -0
  7. data/.builders/generators/back/scripts/generated/technical-design-and-features.md +424 -0
  8. data/.builders/klues/add_episode.klue +25 -0
  9. data/.builders/klues/change_chapter_name.klue +32 -0
  10. data/.builders/klues/create_chapter_video.klue +34 -0
  11. data/.builders/klues/create_project.klue +37 -0
  12. data/.builders/klues/empty_trash.klue +24 -0
  13. data/.builders/klues/episode_path.klue +77 -0
  14. data/.builders/klues/global_config.klue +31 -0
  15. data/.builders/klues/move_ecamm_file.klue +21 -0
  16. data/.builders/klues/move_to_trash.klue +35 -0
  17. data/.builders/klues/open_in_finder.klue +25 -0
  18. data/.builders/klues/project_config.klue +123 -0
  19. data/.builders/klues/project_meta_data_store.klue +28 -0
  20. data/.builders/klues/project_path.klue +77 -0
  21. data/.builders/klues/recording_file_watcher.klue +28 -0
  22. data/.builders/klues/recording_filename.klue +112 -0
  23. data/.builders/klues/restore_from_trash.klue +29 -0
  24. data/.builders/klues/switch_focus.klue +24 -0
  25. data/.builders/klues/text_to_speech.klue +29 -0
  26. data/.builders/klues/transcript_data_store.klue +28 -0
  27. data/.rubocop.yml +2 -0
  28. data/CHANGELOG.md +26 -0
  29. data/README.md +13 -20
  30. data/bin/fli_video +6 -0
  31. data/docs/feature-list.md +76 -0
  32. data/docs/generated/application-structure.json +53 -0
  33. data/docs/generated/features-and-components.md +993 -0
  34. data/docs/generated/technical-design-and-features.md +437 -0
  35. data/docs/technical-specifications.md +360 -0
  36. data/fli.rb +138 -0
  37. data/lib/fli_video/cli.rb +30 -0
  38. data/lib/fli_video/version.rb +1 -1
  39. data/package-lock.json +2 -2
  40. data/package.json +1 -1
  41. data/scripts/01-get-technical-design-and-feature-list.md +5 -0
  42. data/scripts/01-get-technical-design-and-feature-list.rb +39 -0
  43. data/scripts/02-get-feature-list-and-components.md +26 -0
  44. data/scripts/02-get-feature-list-and-components.rb +56 -0
  45. data/scripts/03-get-code-structure.md +33 -0
  46. data/scripts/03-get-code-structure.rb +73 -0
  47. metadata +41 -3
  48. data/README-features.md +0 -36
@@ -0,0 +1,437 @@
1
+ # FliVideo
2
+
3
+ ## Application Overview
4
+
5
+ FliVideo is a Video Asset Managment tool created by a YouTuber `@AppyDave` for YouTubers.
6
+
7
+ It provides a set of image, video and workflow management tools to help its creator 'AppyDave' to automate and systemetize the video production process.
8
+
9
+ The intiial idea behind FliVideo was Zappier for YouTubers, but it is evolving with a range of capabilities around script, b-roll and presenation canvas automation.
10
+
11
+ ### Video Recording Managment
12
+
13
+ FliVideo initially targeted video content creators using Ecamm Live on the Mac, and adaptable for OBS users.
14
+
15
+ Tailored for projects ranging from individual YouTube videos to episodes in a podcast series, the application fits seamlessly into the workflow between video recording and editing.
16
+
17
+ It streamlines the post-recording process, encompassing file organization, renaming, and assembly of video recordings, thereby enhancing the efficiency and structure of content creation.
18
+
19
+ ### Core Functionality
20
+
21
+ - **Video Management**: The application intelligently handles videos recorded via Ecamm Live. Once Ecamm saves the videos with a name and timestamp in its folder, our system relocates them to a specific project or episode folder within the project/recordings directory.
22
+ - **Project and Episode Handling**: Each video project pertains to either a single YouTube video or a series of podcast episodes. The application supports a structured approach to organizing these projects.
23
+ - **Chapter-Based Recording**: Emulating a book's structure, down to chapters and individual paragraphs or sentences, videos are recorded and categorized as chapters, which can further be divided into smaller segments or 'parts', akin to paragraphs or sentences, labeled sequentially (e.g., a, b, c...).
24
+ - **File Naming and Organization**: Adhering to a sophisticated naming convention, the application names projects using a sequence (e.g., a01..a99, b01..), a YouTube channel code (e.g., ac=AppyCast, fv=FliVideo), and specific project descriptors. This convention is applied to organize and identify video chapters and parts within each project.
25
+ - **Combining Video Chapters**: After completing recordings for a chapter, these are joined to form a new video file in the chapter's folder, enhancing content flow and consistency.
26
+ - **Speech to Text Integration**: The application features advanced speech-to-text capabilities, converting spoken content into transcriptions. These transcriptions are then utilized for various content generation scenarios, including automatic tagging, generating prompts for AI-based tools like DALL·E 3, and providing detailed instructions for video editors.
27
+
28
+ ### Advanced Features
29
+
30
+ - **Dynamic Configuration**: The system adapts to various configurations set by the user before recording, using this information for subsequent file naming and routing.
31
+ - **Trash and Undo Functions**: Videos deemed suboptimal can be moved to a 'trash' folder, with the ability to undo this action if needed.
32
+ - **Automated File Processing**: Utilizing a FileWatch processor, the application automates responses to file events, like moving new recordings to designated folders.
33
+ - **Content Segmentation**: The application supports segmentation of content into sections and subparts, each with a calculated sequence number and name for easy identification and organization.
34
+ - **Metadata and Transcription Integration**: Extracting metadata from video transcriptions and file tags, the system aids in post-production processes such as keyword generation and chapter transitions.
35
+
36
+ ### Organization Suited for
37
+
38
+ - Long form YouTube content
39
+ - Multi Episode Podcasts
40
+ - One off YouTube Short or multiple shorts extracted from Long Form or Episode videos
41
+ - Course Creation
42
+
43
+ ## eCamm Live
44
+
45
+ I use eCamm Live to record my videos. It is simple to create videos with scenes and record individual sections of a video. This application should adapt to OBS with minimal changes.
46
+
47
+ eCamm live recording files are saved in the following format:
48
+
49
+ ```bash
50
+ Ecamm Live Recording on [YYYY-MM-DD] at [HH.MM.SS].mov
51
+
52
+ # Example
53
+ Ecamm Live Recording on 2023-08-25 at 14.51.58.mov
54
+ ```
55
+
56
+ ## Configuration
57
+
58
+
59
+ ### Global configuration
60
+
61
+ FliVideo uses a global configuration file located at `~/.fli-video.json` to store settings and paths for the application and state information such as the current project and episode. This file is created when the application is first run and is updated when the user changes the configuration.
62
+
63
+ ### Project configuration
64
+
65
+ FliVideo stores project-specific settings in `.fv.json` file located in the project's root folder. This file is created when the user creates a new project and is updated when recordings are updated. This file has a section for video and a section for episodes and uses the same structure in both sections
66
+
67
+ ## Project Naming and Structure
68
+
69
+ As part of the application development, each video project is assigned an alphanumeric identifier, ensuring a unique and systematic approach to project management.
70
+
71
+ Currently, the application supports four primary project codes corresponding to distinct content areas: AppyCast, AppyDave, WinningPrompts, and FliVideo.
72
+
73
+ Each project is also given a descriptive title, providing clear and immediate insight into its content or objective. Additionally, project names may include a status or keyword, offering a quick reference to the project's current state or specific characteristics. This naming convention and structure are fundamental to the application, as they facilitate efficient organization, easy retrieval, and effective management of diverse projects, ranging from media production to targeted content creation.
74
+
75
+ ### Sample project folder names
76
+
77
+ ```bash
78
+ a13-wp-openai-moderation-api-announcement-aug-25
79
+ a20-ad-open-interpreter
80
+ a21-ac-custom-gpt-instruction
81
+ a22-ac-browse-with-bing-chatgpt-feature
82
+ a24-ad-appydave-website
83
+ a26-ac-pinokio-NOT-STARTED
84
+ a27-ac-categorize-mp4-CI
85
+ a28-ac-easy-gpt-context-creation-FIND-MINDMAP
86
+ a29-ac-gpts-analyze-pdf-transations
87
+ ```
88
+
89
+ ### Sample project codes
90
+
91
+ - `ad` - AppyDave
92
+ - `ac` - AppyDaveCoding
93
+ - `fv` - FliVideo
94
+ - `wp` - WinningPrompts
95
+ - `c9` - Carnivore90
96
+ - `t1` - Trend10
97
+
98
+ ### Video Subfolders
99
+
100
+ Within the application's structure, video subfolders play a crucial role in organizing various elements of a project. These subfolders, residing under `project-name` for single video projects or `project-name/episode-name` for podcast episodes, are named and utilized as follows:
101
+
102
+ - **recordings**: This folder contains individual labeled recordings. Each recording is meticulously named and stored here, serving as the primary repository for raw video footage.
103
+
104
+ - **chapters**: Grouped recordings that have been joined together are stored in this folder. It represents the assembled segments of a project, showcasing the progression from individual recordings to cohesive chapters.
105
+
106
+ - **.trash**: The `.trash` folder is designated for recordings considered as bad takes. This allows for an efficient way to segregate and review discarded content, keeping the main folders clutter-free while retaining the option for retrieval.
107
+
108
+ - **assets**: This folder is utilized for storing extra graphic materials or b-roll assets. These elements are crucial in the production phase of a video, enhancing the visual appeal and providing supplementary content.
109
+
110
+ - **transcription**: Transcription files, providing textual versions of the video content, are stored here. This is especially useful for accessibility, content repurposing, and as a reference during the editing process.
111
+
112
+
113
+ ### Chapter naming convention
114
+
115
+ Each video project is divided into chapters, which are further segmented into parts. This structure is analogous to a book's chapters and paragraphs, respectively.
116
+
117
+ A chapter name like introduction may have additional descriptive labels like `introduction-context`, `introduction-outline`, `introduction-call-to-action`.
118
+
119
+ #### Sample chapter names
120
+
121
+ Chapter names help to identify the content of the video and maybe used for transition slide titles or chapter titles in a YouTube video.
122
+
123
+ - introduction
124
+ - overview
125
+ - example
126
+ - question
127
+ - answer
128
+ - summary
129
+ - outro
130
+
131
+ #### Why are parts important?
132
+
133
+ Too minimize the amount of editing required, I may want to record each part of a chapter separately. This allows clean recordings with minimal editing.
134
+
135
+ ### Keywords and Tags
136
+
137
+ Any recording can have 1 or more tags associated with it. These tags can be used to inform the video editor to inject B-roll or be picked up by another automation such as transcribe and send to GPT Bot
138
+
139
+ #### Example Tags
140
+
141
+ - `INTRO` - This recording needs to be placed into an intro template
142
+ - `CTA` - Like/subscribe, add comment, link in description or any other call to action
143
+ - `TRIM` - This recording needs to be truncated
144
+ - `TRIM-40s` - This recording needs to be truncated to 40 seconds
145
+ - `BROLL` - This recording needs B-roll
146
+ - `TELEPROMPT` - This recording needs to be transcribed and put into the teleprompter or sent to GPT bot for script inprovement
147
+ - `OUTRO` - This recording needs to be placed into an outro template
148
+
149
+ ### Scenarios
150
+
151
+ #### Long form
152
+
153
+ For full-length YouTube videos, the application offers a comprehensive solution from initial recording to final organization. It supports the creation and management of individual video projects, each with unique identifiers and descriptive names. The application's robust structure allows for the segmentation of videos into chapters and subparts, making the editing process more manageable and efficient. This scenario is ideal for YouTubers looking to produce structured, high-quality content for their channels.
154
+
155
+ #### Multi Episode Podcast
156
+
157
+ For podcasters using YouTube as their platform, the application provides excellent tools for episode management. It enables the creation of episodic content, each episode with its own identifier and title, under a single project umbrella. This scenario allows podcast creators to maintain a cohesive series, with easy navigation and organization of episodes, enhancing the listener's experience on YouTube.
158
+
159
+ #### Course Creation
160
+
161
+ In the context of online courses, the application excels in organizing and managing educational content. Course creators can structure their material into distinct sections and chapters, aligning with course modules or lessons. This scenario is particularly useful for educators and trainers who seek to provide a well-organized, accessible learning experience. The application's capabilities in handling multiple recordings and segments ensure that each part of the course is neatly cataloged and easy to access for students.
162
+
163
+ #### Short form
164
+
165
+ The application streamlines YouTube Shorts creation by allowing users to start new shorts projects or extract segments from longer videos. It enables easy segmentation, customization with intros and outros, and organizes these shorts in dedicated folders, enhancing content diversity on YouTube.
166
+
167
+ ### YouTube Shorts
168
+
169
+ The application is proficiently designed to accommodate the creation of YouTube Shorts, catering to both standalone short-form videos and segments derived from longer recordings.
170
+
171
+ **Standalone Shorts**: When starting a brand-new project specifically as a YouTube Short, the process mirrors that of a regular YouTube video. The application allows for the creation, naming, and organization of these shorts in their unique project folders.
172
+
173
+ **Shorts from Longer Recordings**: In many instances, a segment within a chapter or even a single paragraph might be ideal for a YouTube Short. In such cases, the application offers the flexibility to extract and separate these segments. It allows for the recording of additional intros and outros, specifically tailoring the segment for the short-form format. These extracted segments are then organized into a dedicated folder, designated for YouTube Shorts, within the main project. This ensures that while the original recording remains an integral part of the larger video or episode, the segment is also independently accessible for the video editor to assemble into a YouTube Short.
174
+
175
+ ## Project Structure Design
176
+
177
+ The following sections describe the application's structure and naming conventions using an exiting project example and highlights the system's capabilities in managing video projects and episodes.
178
+
179
+ #### Project Naming and Organization
180
+
181
+ Each project in the system is uniquely identified with a structured naming convention. For example, `a27-ac-categorize-mp4-IN-PROGRESS` breaks down as follows:
182
+
183
+ - **Sequence**: 'a27', representing the project's unique identifier.
184
+ - **Project Code**: 'ac', denoting the AppyCast channel.
185
+ - **Project Name**: 'categorize-mp4', describing the project's focus.
186
+ - **Status**: 'IN-PROGRESS', indicating the current stage of the project.
187
+
188
+ #### Episode Management
189
+
190
+ Episodes within a project are optional and are used when a project encompasses multiple videos. Each episode has its own folder named with a sequence and descriptive title, such as `01-flivideo-project-kickoff`:
191
+
192
+ - **Sequence**: '01', '02', etc., showing the episode's order in the series.
193
+ - **Episode Name**: Like 'flivideo-project-kickoff', providing a brief description of the episode's content.
194
+
195
+ #### Recordings Folder
196
+
197
+ The recordings folder, e.g., `a27-ac-categorize-mp4-CI/01-flivideo-project-kickoff/recordings`, contains individual video files. These are named following a specific pattern:
198
+
199
+ - **Sequence and Section Name**: Starting with a number indicating their order, followed by a descriptive name, like '01-introduction.mov'.
200
+ - **Subparts**: For more detailed segmentation, files are further labeled with suffixes like '-a', '-b', '-c', indicating the subparts of a section, such as '02-a-overview.mov', '02-b-overview.mov'.
201
+
202
+ Here is an example from episode 1 of the FliVideo project Podcast.
203
+
204
+ ```bash
205
+ # a27-ac-categorize-mp4-CI/01-flivideo-project-kickoff/recordings
206
+
207
+ 01-introduction.mov
208
+ 02-a-overview.mov
209
+ 02-b-overview.mov
210
+ 02-c-overview.mov
211
+ 02-d-overview.mov
212
+ 02-e-overview.mov
213
+ 03-a-role_CI.mov
214
+ 03-b-overview_CI.mov
215
+ 04-a-gpt-first-attempt.mov
216
+ 04-b-gpt-first-attempt-explanation.mov
217
+ 05-first-commands_TRANSITION.mov
218
+ 06-a-commands_CI.mov
219
+ 07-b-commands_CI.mov
220
+ 07-d-commands-goal_CI.mov
221
+ 08-a-response_CI-TRANSITION.mov
222
+ 08-b-response_CI-TRANSITION.mov
223
+ 09-a-gpt-2nd-attempt.mov
224
+ 09-b-gpt-2nd-attempt.mov
225
+ 09-c-gpt-2nd-attempt.mov
226
+ 10-a-gpt-goal.mov
227
+ 10-b-gpt-goal.mov
228
+ 10-c-gpt-goal.mov
229
+ 10-d-gpt-goal.mov
230
+ 10-e-gpt-goal.mov
231
+ 10-f-gpt-goal.mov
232
+ 11-a-gpt-goal-more.mov
233
+ 11-b-gpt-goal-more.mov
234
+ 12-a-code-cli.mov
235
+ 12-b-code-cli.mov
236
+ 12-c-code-cli.mov
237
+ 13-a-code-cli-run.mov
238
+ 13-b-code-cli-run.mov
239
+ 13-c-code-cli-run.mov
240
+ 14-a-support-project-name.mov
241
+ 14-b-support-project-name.mov
242
+ 14-c-support-project-name.mov
243
+ 15-outro.mov
244
+ ```
245
+
246
+ #### Chapters Folder
247
+
248
+ In the chapters folder, such as `a27-ac-categorize-mp4-CI/01-flivideo-project-kickoff/chapters`, recordings are grouped and combined to form complete chapters of the project:
249
+
250
+ - **Compiled Chapters**: Each file represents a combined version of the recordings from the 'recordings' folder, named by their sequence and section, like '01-introduction.mov', '02-overview.mov'.
251
+ - **Cohesive Segments**: These files reflect the culmination of individual recordings and subparts, merged to create cohesive segments of the project or episode.
252
+
253
+ Here is an example from episode 1 of the FliVideo project Podcast.
254
+
255
+ ```bash
256
+ # a27-ac-categorize-mp4-CI/01-flivideo-project-kickoff/chapters
257
+
258
+ 01-introduction.mov
259
+ 02-overview.mov
260
+ 03-role_CI.mov
261
+ 04-gpt-first-attempt.mov
262
+ 05-first-commands.mov
263
+ 06-commands.mov
264
+ 07-commands-goal.mov
265
+ 08-response_CI.mov
266
+ 09-gpt-2nd-attempt.mov
267
+ 10-gpt-goal.mov
268
+ 11-gpt-goal-more.mov
269
+ 12-code-cli.mov
270
+ 13-code-cli-run.mov
271
+ 14-support-project-name.mov
272
+ 15-outro.mov
273
+ ```
274
+
275
+ #### Sample Project #1 - Single Video
276
+
277
+ Example folder structure for single video projects
278
+
279
+ ```bash
280
+ project-name/recordings/01-introduction.mov
281
+ project-name/recordings/02-a-content.mov
282
+ project-name/recordings/02-b-content.mov
283
+ project-name/recordings/03-a-outro.mov
284
+ project-name/recordings/03-b-outro-cta.mov
285
+ project-name/chapters/01-introduction.mov
286
+ project-name/chapters/02-content.mov
287
+ project-name/chapters/03-outro.mov
288
+ ```
289
+
290
+ #### Sample Project #2 - Multiple Episodes
291
+
292
+ Example folder structure for multiple episode projects
293
+
294
+ ```bash
295
+ project-name/01-episode-name/recordings/01-introduction.mov
296
+ project-name/01-episode-name/recordings/02-a-content.mov
297
+ project-name/01-episode-name/recordings/02-b-content.mov
298
+ project-name/01-episode-name/recordings/03-a-outro.mov
299
+ project-name/01-episode-name/recordings/03-b-outro-cta.mov
300
+ project-name/01-episode-name/chapters/01-introduction.mov
301
+ project-name/01-episode-name/chapters/02-content.mov
302
+ project-name/01-episode-name/chapters/03-outro.mov
303
+ ```
304
+
305
+ ```bash
306
+ project-name/02-different-episode-name/recordings/01-introduction.mov
307
+ project-name/02-different-episode-name/recordings/02-content.mov
308
+ project-name/02-different-episode-name/recordings/03-a-outro.mov
309
+ project-name/02-different-episode-name/recordings/03-b-outro-endcards.mov
310
+ project-name/02-different-episode-name/chapters/01-introduction.mov
311
+ project-name/02-different-episode-name/chapters/02-content.mov
312
+ project-name/02-different-episode-name/chapters/03-outro.mov
313
+ ```
314
+
315
+ #### Sample Project #3 - Awaiting descision to keep or trash
316
+
317
+ Example folder structure where there are a bunch of files that I have not yet marked as Good Takes,
318
+ All recordings need to be considered bad takes until I say save, at which time any prior bad takes will be moved to trash
319
+
320
+ 1 project=1 standard video before trash
321
+
322
+ ```bash
323
+ project-name/.trash
324
+ project-name/recordings/01-introduction.mov
325
+ project-name/recordings/02-a-content.mov
326
+ project-name/recordings/02-b-content.mov
327
+ project-name/recordings/03-a-outro.mov
328
+ project-name/recordings/03-b-outro-cta.mov
329
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 09.58.55.mov
330
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 09.59.38.mov
331
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.00.03.mov
332
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.00.26.mov
333
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.00.55.mov
334
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.01.30.mov
335
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.02.25.mov
336
+ project-name/recordings/Ecamm Live Recording on 2023-12-18 at 10.02.56.mov
337
+ ```
338
+
339
+ #### Sample Project #4 - After trash
340
+
341
+ Notice that most of the bad takes have been moved to the trash folder, but the last one was named as 03-c-outro.mov
342
+
343
+ 1 project=1 standard video after trash
344
+
345
+ ```bash
346
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 09.58.55.mov
347
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 09.59.38.mov
348
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 10.00.03.mov
349
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 10.00.26.mov
350
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 10.00.55.mov
351
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 10.01.30.mov
352
+ project-name/.trash/Ecamm Live Recording on 2023-12-18 at 10.02.25.mov
353
+ project-name/recordings/01-introduction.mov
354
+ project-name/recordings/02-a-content.mov
355
+ project-name/recordings/02-b-content.mov
356
+ project-name/recordings/03-a-outro.mov
357
+ project-name/recordings/03-b-outro-cta.mov
358
+ project-name/recordings/03-c-outro.mov
359
+ ```
360
+
361
+
362
+ ## Features
363
+
364
+ ### Feature <-> DSL GPTs
365
+ https://chat.openai.com/g/g-AyFi0UOXn-code-simplifier
366
+
367
+ **Global Configuration**
368
+ Access and apply global configuration settings for video asset management and state consistency.
369
+
370
+ **Project Configuration**
371
+ Access and apply video or episode settings and state. Infers project settings from existing project folders and files.
372
+
373
+ **CLI Project Commands**
374
+ Efficiently execute and manage video project commands using a command-line interface, enhancing control and flexibility in project handling.
375
+
376
+ **FileWatch Processor**
377
+ Utilize a FileWatch processor to automate file event responses, directing new recordings to designated folders for efficient content management.
378
+
379
+ **Create Project**
380
+ Setup a new video project for standalone YouTube video or Podcast.
381
+
382
+ **Add Episode**
383
+ Add a new episode to an existing podcast project.
384
+
385
+ **Switch Video Focus**
386
+ Easily switch between different video projects or episodes to accommodate changing content priorities.
387
+
388
+ **Move eCamm File**
389
+ Seamlessly transfer eCamm recordings to the current focused video or podcast episode recordings subfolder.
390
+
391
+ **Project Path**
392
+ Construct and manage project paths dynamically using configurable values and existing folder name segments.
393
+
394
+ **Episode Path**
395
+ Construct and manage episode paths dynamically using configurable values and existing folder name segments.
396
+
397
+ **Recording Namer**
398
+ Dynamically generate and update video recording filenames, incorporating chapter and part sequences, chapter names, and tags, with capabilities to modify chapter sequences and tags for improved organization and content identification.
399
+
400
+ **Change Chapter Name**
401
+ Alter the name of a chapter based on its sequence in the project, facilitating better organization and identification of video content.
402
+
403
+ **Trash**
404
+ Moves suboptimal video takes to a designated 'trash' or 'archive' folder, optimizing storage and maintaining project clarity by segregating lesser-quality content.
405
+
406
+ **Trash Undo**
407
+ Retrieves video takes from the '.trash' folder and moves them back into the target project folder, allowing for reconsideration or re-evaluation of previously discarded content.
408
+
409
+ **Clean Trash**
410
+ Permanently deletes video takes from the 'trash' or 'archive' folder, freeing up storage space and ensuring project clarity.
411
+
412
+ **Open in Finder**
413
+ Quickly access video project and episode folders within the Finder, streamlining file navigation.
414
+
415
+ **Create Chapter Video**
416
+ Combine and review video chapter segments independently, facilitating content evaluation and editing.
417
+
418
+ **Text to Speech**
419
+ Transcribe spoken content to text and store transcriptions folder in multiple transcription formats.
420
+
421
+ Create a DSL using the interactor pattern for:
422
+
423
+ **Transcript Data Store**
424
+ Builds a JSON datastore of transcripts for an entire project based on existing transcript folders found within project, episode, recording, chapter and post-produced folders.
425
+
426
+ **Project Meta Data Store**
427
+ Build a JSON datastore of files for an entire project based on existing project, episode, recording, chapter and post-produced folders and infer metadata based on KEYWORDS, transcripts or other useful data.
428
+
429
+ ## Future Ideas
430
+
431
+ **Web Command Interface for Video Project Management**
432
+ Introduce a streamlined, web-based interface for managing video project commands, enabling efficient control and organization of project components through simple browser interactions.
433
+
434
+ **Project Meta Report**
435
+ Generate a detailed report for a specific video project, including the episodes, chapters, recordings, a list of recording IDs (chapter sequence + part sequence), and the name for the next video recording, file sizes.
436
+ This should be extracted to an AstroJS Website or HTML template servered by a local webserver and provide viewing and navigation for all my video projects.
437
+