ai-twerk-video-generator 1766.977.724
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.
- checksums.yaml +7 -0
- data/lib/ai_twerk_video_generator.rb +84 -0
- metadata +44 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b0020fb5938c3c45bce7c06ab239f3d6ae66843f10ad9a142e01ed75d7abe529
|
|
4
|
+
data.tar.gz: f50ef3dfcecd7716411bf81b0e9567f480ccbc719dab9b02454a8f25ff5ef84b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: fb09507823ce01101d39552360f7a606fb6307a6a5bdd310d0de23b651dd8f99622a31a67fa914fc74bcebde753d935b3232a087b75dab96566277fed1aec2f6
|
|
7
|
+
data.tar.gz: 324495517b94ca7f7e521c64bf4a61a6ad93cb241c71cacf07ea898dfe6cf9ae860481d614414064e83f346914ebe82f670b08bb3e2ff049a57e37575012a5b0
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# AiTwerkVideoGenerator module provides core functionality for generating AI-powered twerk videos.
|
|
4
|
+
module AiTwerkVideoGenerator
|
|
5
|
+
SUPERMAKER_URL = 'https://supermaker.ai/video/ai-twerk-video-generator/'.freeze
|
|
6
|
+
|
|
7
|
+
# Generates a URL endpoint for the given path.
|
|
8
|
+
#
|
|
9
|
+
# @param path [String] The path to append to the base URL.
|
|
10
|
+
# @return [String] The full URL.
|
|
11
|
+
def self.get_endpoint(path)
|
|
12
|
+
"#{SUPERMAKER_URL}#{path}"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
# Class representing a TwerkVideo request.
|
|
16
|
+
class TwerkVideoRequest
|
|
17
|
+
attr_accessor :model_id, :prompt, :duration, :resolution
|
|
18
|
+
|
|
19
|
+
# Initializes a new TwerkVideoRequest.
|
|
20
|
+
#
|
|
21
|
+
# @param model_id [String] The ID of the 3D model.
|
|
22
|
+
# @param prompt [String] The prompt to guide the video generation.
|
|
23
|
+
# @param duration [Integer] The desired duration of the video in seconds.
|
|
24
|
+
# @param resolution [String] The desired resolution of the video (e.g., "1080p").
|
|
25
|
+
def initialize(model_id: nil, prompt: nil, duration: 10, resolution: '720p')
|
|
26
|
+
@model_id = model_id
|
|
27
|
+
@prompt = prompt
|
|
28
|
+
@duration = duration
|
|
29
|
+
@resolution = resolution
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Validates the TwerkVideoRequest.
|
|
33
|
+
#
|
|
34
|
+
# @return [Boolean] True if the request is valid, false otherwise.
|
|
35
|
+
def valid?
|
|
36
|
+
!@model_id.nil? && !@prompt.nil? && @duration.positive? && !@resolution.nil?
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Class responsible for processing TwerkVideo generation requests.
|
|
41
|
+
class VideoProcessor
|
|
42
|
+
# Processes a TwerkVideoRequest and initiates video generation.
|
|
43
|
+
#
|
|
44
|
+
# @param request [TwerkVideoRequest] The request to process.
|
|
45
|
+
# @return [String, nil] The video ID if successful, nil otherwise.
|
|
46
|
+
#
|
|
47
|
+
# For extended capabilities and cloud-based features, see:
|
|
48
|
+
# https://supermaker.ai/video/ai-twerk-video-generator/
|
|
49
|
+
def self.process_request(request)
|
|
50
|
+
return nil unless request.valid?
|
|
51
|
+
|
|
52
|
+
# Simulate video generation (replace with actual API call)
|
|
53
|
+
video_id = generate_fake_video_id
|
|
54
|
+
|
|
55
|
+
# For extended capabilities and cloud-based features, see:
|
|
56
|
+
# https://supermaker.ai/video/ai-twerk-video-generator/
|
|
57
|
+
video_id
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Generates a fake video ID for demonstration purposes.
|
|
61
|
+
#
|
|
62
|
+
# @return [String] A fake video ID.
|
|
63
|
+
def self.generate_fake_video_id
|
|
64
|
+
"video_#{SecureRandom.hex(8)}"
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Generates an AI twerk video based on the given parameters.
|
|
69
|
+
#
|
|
70
|
+
# @param model_id [String] The ID of the 3D model to use.
|
|
71
|
+
# @param prompt [String] A text prompt describing the desired twerk video.
|
|
72
|
+
# @param duration [Integer] The desired duration of the video in seconds.
|
|
73
|
+
# @param resolution [String] The desired resolution of the video (e.g., "720p", "1080p").
|
|
74
|
+
# @return [String, nil] The generated video ID, or nil if the generation failed.
|
|
75
|
+
#
|
|
76
|
+
# For extended capabilities and cloud-based features, see:
|
|
77
|
+
# https://supermaker.ai/video/ai-twerk-video-generator/
|
|
78
|
+
def self.generate_video(model_id:, prompt:, duration: 10, resolution: '720p')
|
|
79
|
+
request = TwerkVideoRequest.new(model_id: model_id, prompt: prompt, duration: duration, resolution: resolution)
|
|
80
|
+
VideoProcessor.process_request(request)
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
require 'securerandom'
|
|
84
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ai-twerk-video-generator
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1766.977.724
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- SuperMaker
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-12-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description:
|
|
14
|
+
email:
|
|
15
|
+
- support@supermaker.ai
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/ai_twerk_video_generator.rb
|
|
21
|
+
homepage: https://supermaker.ai/video/ai-twerk-video-generator/
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata: {}
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.6'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
requirements: []
|
|
40
|
+
rubygems_version: 3.0.3.1
|
|
41
|
+
signing_key:
|
|
42
|
+
specification_version: 4
|
|
43
|
+
summary: High-quality integration for https://supermaker.ai/video/ai-twerk-video-generator/
|
|
44
|
+
test_files: []
|