fli_video 0.0.2 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/klues/add_episode.klue +25 -0
  3. data/.builders/klues/change_chapter_name.klue +32 -0
  4. data/.builders/klues/create_chapter_video.klue +34 -0
  5. data/.builders/klues/create_project.klue +37 -0
  6. data/.builders/klues/empty_trash.klue +24 -0
  7. data/.builders/klues/episode_path.klue +77 -0
  8. data/.builders/klues/global_config.klue +31 -0
  9. data/.builders/klues/move_ecamm_file.klue +21 -0
  10. data/.builders/klues/move_to_trash.klue +29 -0
  11. data/.builders/klues/open_in_finder.klue +25 -0
  12. data/.builders/klues/project_config.klue +123 -0
  13. data/.builders/klues/project_meta_data_store.klue +28 -0
  14. data/.builders/klues/project_path.klue +77 -0
  15. data/.builders/klues/recording_file_watcher.klue +28 -0
  16. data/.builders/klues/recording_filename.klue +112 -0
  17. data/.builders/klues/restore_from_trash.klue +29 -0
  18. data/.builders/klues/switch_focus.klue +24 -0
  19. data/.builders/klues/text_to_speech.klue +29 -0
  20. data/.builders/klues/transcript_data_store.klue +28 -0
  21. data/.rubocop.yml +2 -0
  22. data/CHANGELOG.md +18 -0
  23. data/README.md +13 -20
  24. data/bin/fli_video +6 -0
  25. data/docs/feature-list.md +75 -0
  26. data/docs/generated/application-structure.json +57 -0
  27. data/docs/generated/features-and-components.md +987 -0
  28. data/docs/generated/technical-design-and-features.md +420 -0
  29. data/docs/technical-specifications.md +347 -0
  30. data/fli.rb +138 -0
  31. data/lib/fli_video/cli.rb +30 -0
  32. data/lib/fli_video/version.rb +1 -1
  33. data/package-lock.json +2 -2
  34. data/package.json +1 -1
  35. data/scripts/01-get-structure.rb +84 -0
  36. data/scripts/02-get-features-and-components.rb +38 -0
  37. data/scripts/03-get-technical-design-and-features.rb +27 -0
  38. metadata +32 -3
  39. data/README-features.md +0 -36
@@ -0,0 +1,27 @@
1
+ require 'json'
2
+
3
+ def read_file(file_name)
4
+ puts "Reading file #{file_name}"
5
+ File.read(file_name)
6
+ rescue => e
7
+ puts "Error reading file #{file_name}: #{e.message}"
8
+ ''
9
+ end
10
+
11
+ def write_file(file_name, technical_design, feature_list)
12
+ File.open(file_name, 'w') do |file|
13
+ file.write(technical_design)
14
+ file.write(feature_list)
15
+ end
16
+ rescue => e
17
+ puts "Error writing to file #{file_name}: #{e.message}"
18
+ end
19
+
20
+ # Main execution
21
+ technical_design = read_file('docs/technical-specifications.md')
22
+ feature_list = read_file('docs/feature-list.md')
23
+ output_file = 'docs/generated/technical-design-and-features.md'
24
+
25
+ write_file(output_file, technical_design, feature_list)
26
+
27
+ IO.popen('pbcopy', 'w') { |io| io.puts File.read(output_file) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fli_video
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-19 00:00:00.000000000 Z
11
+ date: 2023-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: k_log
@@ -34,6 +34,25 @@ files:
34
34
  - ".builders/_.rb"
35
35
  - ".builders/boot.rb"
36
36
  - ".builders/generators/01-bootstrap.rb"
37
+ - ".builders/klues/add_episode.klue"
38
+ - ".builders/klues/change_chapter_name.klue"
39
+ - ".builders/klues/create_chapter_video.klue"
40
+ - ".builders/klues/create_project.klue"
41
+ - ".builders/klues/empty_trash.klue"
42
+ - ".builders/klues/episode_path.klue"
43
+ - ".builders/klues/global_config.klue"
44
+ - ".builders/klues/move_ecamm_file.klue"
45
+ - ".builders/klues/move_to_trash.klue"
46
+ - ".builders/klues/open_in_finder.klue"
47
+ - ".builders/klues/project_config.klue"
48
+ - ".builders/klues/project_meta_data_store.klue"
49
+ - ".builders/klues/project_path.klue"
50
+ - ".builders/klues/recording_file_watcher.klue"
51
+ - ".builders/klues/recording_filename.klue"
52
+ - ".builders/klues/restore_from_trash.klue"
53
+ - ".builders/klues/switch_focus.klue"
54
+ - ".builders/klues/text_to_speech.klue"
55
+ - ".builders/klues/transcript_data_store.klue"
37
56
  - ".releaserc.json"
38
57
  - ".rspec"
39
58
  - ".rubocop.yml"
@@ -43,15 +62,25 @@ files:
43
62
  - Gemfile
44
63
  - Guardfile
45
64
  - LICENSE.txt
46
- - README-features.md
47
65
  - README.md
48
66
  - Rakefile
49
67
  - bin/console
68
+ - bin/fli_video
50
69
  - bin/setup
70
+ - docs/feature-list.md
71
+ - docs/generated/application-structure.json
72
+ - docs/generated/features-and-components.md
73
+ - docs/generated/technical-design-and-features.md
74
+ - docs/technical-specifications.md
75
+ - fli.rb
51
76
  - lib/fli_video.rb
77
+ - lib/fli_video/cli.rb
52
78
  - lib/fli_video/version.rb
53
79
  - package-lock.json
54
80
  - package.json
81
+ - scripts/01-get-structure.rb
82
+ - scripts/02-get-features-and-components.rb
83
+ - scripts/03-get-technical-design-and-features.rb
55
84
  - sig/fli_video.rbs
56
85
  homepage: http://appydave.com/gems/fli_video
57
86
  licenses:
data/README-features.md DELETED
@@ -1,36 +0,0 @@
1
- Read Global Configuration
2
- Access and apply global configuration settings for video asset management and state consistency.
3
- Project or Project/Episode Management
4
- Efficiently handle one video project or episode at a time, ensuring focused and organized workflow.
5
- Quick Create New Project
6
- Rapidly initiate new video project or episode, enabling quick development and setup with minimal steps.
7
- Change Project/Episode Focus
8
- Easily switch between different video projects or episodes to accommodate changing content priorities.
9
- Read Project Configuration
10
- Maintain and retrieve project-specific settings and configurations to resume video projects seamlessly.
11
- Calculate Location/Filename for Video Recordings
12
- Automatically determine and organize storage locations and filenames for video recordings, enhancing asset management.
13
- Move eCamm File to Project Recordings Folder
14
- Seamlessly transfer eCamm recordings into appropriate project or episode folders for streamlined project continuity.
15
- Trash
16
- Moves suboptimal video takes to a designated 'trash' or 'archive' folder, optimizing storage and maintaining project clarity by segregating lesser-quality content.
17
- Trash Undo
18
- Retrieves video takes from the 'trash' or 'archive' folder and moves them back into the target project folder, allowing for reconsideration or re-evaluation of previously discarded content.
19
- Finder Integration
20
- Quickly access video project and episode folders within the Finder, streamlining file navigation.
21
- FileWatch Processor for File Event Commands
22
- Utilize a FileWatch processor to automate file event responses, directing new recordings to designated folders for efficient content management.
23
- Generate Chapter Video
24
- Compile and review video chapter segments independently, facilitating content evaluation and editing.
25
- Text to Speech
26
- Transcribe spoken content to text, integrating transcriptions into subsequent workflow stages.
27
- Meta Data Generator
28
- Extract and utilize metadata from video transcriptions and file tags for automated post-production processes like keyword generation, B-roll organization, chapter transitions, and time code marking for calls to action.
29
- Report
30
- Generate a detailed report for a specific video project or episode, including the number of files, chapters, a list of recording IDs (chapter sequence + part number), and the name for the next video recording.
31
- Change Tags
32
- Modify tags or keywords associated with a specific recording ID, allowing for dynamic categorization and organization of video content.
33
- Change Chapter Name
34
- Alter the name of a chapter based on its sequence in the project, facilitating better organization and identification of video content.
35
- Change Chapter Sequence
36
- Adjust the chapter sequence for all files within a chapter, for example, changing from 02 to 03, ensuring consistent and accurate organization of video content.