fastpixapi 1.1.2 → 1.1.3
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 +4 -4
- data/lib/crystalline/metadata_fields.rb +56 -48
- data/lib/crystalline/types.rb +3 -3
- data/lib/crystalline.rb +4 -5
- data/lib/fastpix_client/dimensions.rb +51 -58
- data/lib/fastpix_client/drm_configurations.rb +49 -56
- data/lib/fastpix_client/errors.rb +35 -24
- data/lib/fastpix_client/fastpixapi.rb +2 -4
- data/lib/fastpix_client/in_video_ai_features.rb +100 -160
- data/lib/fastpix_client/input_video.rb +66 -74
- data/lib/fastpix_client/live_playback.rb +82 -99
- data/lib/fastpix_client/manage_live_stream.rb +136 -252
- data/lib/fastpix_client/manage_videos.rb +228 -543
- data/lib/fastpix_client/metrics.rb +76 -120
- data/lib/fastpix_client/models/components/createlivestreamresponsedto.rb +10 -18
- data/lib/fastpix_client/models/components/createmediarequest.rb +9 -18
- data/lib/fastpix_client/models/components/getallmediaresponse.rb +13 -29
- data/lib/fastpix_client/models/components/getcreatelivestreamresponsedto.rb +9 -20
- data/lib/fastpix_client/models/components/getmediaresponse.rb +13 -29
- data/lib/fastpix_client/models/components/live_media_clips.rb +9 -21
- data/lib/fastpix_client/models/components/media.rb +11 -26
- data/lib/fastpix_client/models/components/patchresponsedata.rb +9 -18
- data/lib/fastpix_client/models/components/sourceaccessmedia.rb +11 -26
- data/lib/fastpix_client/models/components/update_media.rb +11 -26
- data/lib/fastpix_client/models/components/views.rb +51 -124
- data/lib/fastpix_client/models/errors/empty_response_error.rb +15 -0
- data/lib/fastpix_client/models/errors.rb +1 -0
- data/lib/fastpix_client/models/operations/push_media_settings.rb +9 -20
- data/lib/fastpix_client/playback.rb +122 -213
- data/lib/fastpix_client/playlist.rb +150 -296
- data/lib/fastpix_client/sdk_hooks/registration.rb +2 -2
- data/lib/fastpix_client/sdk_hooks/types.rb +4 -0
- data/lib/fastpix_client/sdkconfiguration.rb +3 -3
- data/lib/fastpix_client/signing_keys.rb +76 -120
- data/lib/fastpix_client/simulcast_stream.rb +97 -141
- data/lib/fastpix_client/start_live_stream.rb +51 -33
- data/lib/fastpix_client/utils/forms.rb +97 -101
- data/lib/fastpix_client/utils/headers.rb +44 -34
- data/lib/fastpix_client/utils/query_params.rb +39 -29
- data/lib/fastpix_client/utils/request_bodies.rb +4 -8
- data/lib/fastpix_client/utils/security.rb +30 -18
- data/lib/fastpix_client/utils/url.rb +83 -60
- data/lib/fastpix_client/utils/utils.rb +19 -37
- data/lib/fastpix_client/views.rb +66 -90
- data/lib/fastpixapi.rb +10 -10
- data/lib/openssl_patch.rb +24 -24
- metadata +3 -2
|
@@ -71,24 +71,15 @@ module FastpixClient
|
|
|
71
71
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
72
72
|
def ==(other)
|
|
73
73
|
return false unless other.is_a? self.class
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
return false unless @enable_recording == other.enable_recording
|
|
84
|
-
return false unless @enable_dvr_mode == other.enable_dvr_mode
|
|
85
|
-
return false unless @media_policy == other.media_policy
|
|
86
|
-
return false unless @metadata == other.metadata
|
|
87
|
-
return false unless @low_latency == other.low_latency
|
|
88
|
-
return false unless @closed_captions == other.closed_captions
|
|
89
|
-
return false unless @playback_ids == other.playback_ids
|
|
90
|
-
return false unless @srt_playback_response == other.srt_playback_response
|
|
91
|
-
true
|
|
74
|
+
|
|
75
|
+
[@stream_id, @stream_key, @srt_secret, @trial, @status,
|
|
76
|
+
@max_resolution, @max_duration, @created_at, @reconnect_window, @enable_recording,
|
|
77
|
+
@enable_dvr_mode, @media_policy, @metadata, @low_latency, @closed_captions,
|
|
78
|
+
@playback_ids, @srt_playback_response] ==
|
|
79
|
+
[other.stream_id, other.stream_key, other.srt_secret, other.trial, other.status,
|
|
80
|
+
other.max_resolution, other.max_duration, other.created_at, other.reconnect_window, other.enable_recording,
|
|
81
|
+
other.enable_dvr_mode, other.media_policy, other.metadata, other.low_latency, other.closed_captions,
|
|
82
|
+
other.playback_ids, other.srt_playback_response]
|
|
92
83
|
end
|
|
93
84
|
end
|
|
94
85
|
end
|
|
@@ -101,32 +101,17 @@ module FastpixClient
|
|
|
101
101
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
102
102
|
def ==(other)
|
|
103
103
|
return false unless other.is_a? self.class
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
return false unless @moderation == other.moderation
|
|
116
|
-
return false unless @duration == other.duration
|
|
117
|
-
return false unless @created_at == other.created_at
|
|
118
|
-
return false unless @updated_at == other.updated_at
|
|
119
|
-
return false unless @thumbnail == other.thumbnail
|
|
120
|
-
return false unless @metadata == other.metadata
|
|
121
|
-
return false unless @title == other.title
|
|
122
|
-
return false unless @max_resolution == other.max_resolution
|
|
123
|
-
return false unless @source_resolution == other.source_resolution
|
|
124
|
-
return false unless @source_access == other.source_access
|
|
125
|
-
return false unless @generated_subtitles == other.generated_subtitles
|
|
126
|
-
return false unless @is_audio_only == other.is_audio_only
|
|
127
|
-
return false unless @subtitle_available == other.subtitle_available
|
|
128
|
-
return false unless @aspect_ratio == other.aspect_ratio
|
|
129
|
-
true
|
|
104
|
+
|
|
105
|
+
[@id, @workspace_id, @media_quality, @creator_id, @status,
|
|
106
|
+
@mp4_support, @playback_ids, @tracks, @summary, @chapters,
|
|
107
|
+
@named_entities, @moderation, @duration, @created_at, @updated_at,
|
|
108
|
+
@thumbnail, @metadata, @title, @max_resolution, @source_resolution,
|
|
109
|
+
@source_access, @generated_subtitles, @is_audio_only, @subtitle_available, @aspect_ratio] ==
|
|
110
|
+
[other.id, other.workspace_id, other.media_quality, other.creator_id, other.status,
|
|
111
|
+
other.mp4_support, other.playback_ids, other.tracks, other.summary, other.chapters,
|
|
112
|
+
other.named_entities, other.moderation, other.duration, other.created_at, other.updated_at,
|
|
113
|
+
other.thumbnail, other.metadata, other.title, other.max_resolution, other.source_resolution,
|
|
114
|
+
other.source_access, other.generated_subtitles, other.is_audio_only, other.subtitle_available, other.aspect_ratio]
|
|
130
115
|
end
|
|
131
116
|
end
|
|
132
117
|
end
|
|
@@ -100,32 +100,17 @@ module FastpixClient
|
|
|
100
100
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
101
101
|
def ==(other)
|
|
102
102
|
return false unless other.is_a? self.class
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
return false unless @named_entities == other.named_entities
|
|
115
|
-
return false unless @moderation == other.moderation
|
|
116
|
-
return false unless @subtitle_available == other.subtitle_available
|
|
117
|
-
return false unless @duration == other.duration
|
|
118
|
-
return false unless @aspect_ratio == other.aspect_ratio
|
|
119
|
-
return false unless @created_at == other.created_at
|
|
120
|
-
return false unless @updated_at == other.updated_at
|
|
121
|
-
return false unless @metadata == other.metadata
|
|
122
|
-
return false unless @creator_id == other.creator_id
|
|
123
|
-
return false unless @title == other.title
|
|
124
|
-
return false unless @max_resolution == other.max_resolution
|
|
125
|
-
return false unless @source_resolution == other.source_resolution
|
|
126
|
-
return false unless @generated_subtitles == other.generated_subtitles
|
|
127
|
-
return false unless @is_audio_only == other.is_audio_only
|
|
128
|
-
true
|
|
103
|
+
|
|
104
|
+
[@thumbnail, @id, @workspace_id, @media_quality, @status,
|
|
105
|
+
@mp4_support, @source_access, @playback_ids, @tracks, @summary,
|
|
106
|
+
@chapters, @named_entities, @moderation, @subtitle_available, @duration,
|
|
107
|
+
@aspect_ratio, @created_at, @updated_at, @metadata, @creator_id,
|
|
108
|
+
@title, @max_resolution, @source_resolution, @generated_subtitles, @is_audio_only] ==
|
|
109
|
+
[other.thumbnail, other.id, other.workspace_id, other.media_quality, other.status,
|
|
110
|
+
other.mp4_support, other.source_access, other.playback_ids, other.tracks, other.summary,
|
|
111
|
+
other.chapters, other.named_entities, other.moderation, other.subtitle_available, other.duration,
|
|
112
|
+
other.aspect_ratio, other.created_at, other.updated_at, other.metadata, other.creator_id,
|
|
113
|
+
other.title, other.max_resolution, other.source_resolution, other.generated_subtitles, other.is_audio_only]
|
|
129
114
|
end
|
|
130
115
|
end
|
|
131
116
|
end
|
|
@@ -512,130 +512,57 @@ module FastpixClient
|
|
|
512
512
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
513
513
|
def ==(other)
|
|
514
514
|
return false unless other.is_a? self.class
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
return false unless @fp_playback_id == other.fp_playback_id
|
|
567
|
-
return false unless @fp_sdk == other.fp_sdk
|
|
568
|
-
return false unless @fp_sdk_version == other.fp_sdk_version
|
|
569
|
-
return false unless @fp_viewer_id == other.fp_viewer_id
|
|
570
|
-
return false unless @jump_latency == other.jump_latency
|
|
571
|
-
return false unless @latitude == other.latitude
|
|
572
|
-
return false unless @live_stream_latency == other.live_stream_latency
|
|
573
|
-
return false unless @longitude == other.longitude
|
|
574
|
-
return false unless @max_downscaling == other.max_downscaling
|
|
575
|
-
return false unless @max_request_latency == other.max_request_latency
|
|
576
|
-
return false unless @max_upscaling == other.max_upscaling
|
|
577
|
-
return false unless @media_id == other.media_id
|
|
578
|
-
return false unless @os_name == other.os_name
|
|
579
|
-
return false unless @page_context == other.page_context
|
|
580
|
-
return false unless @page_load_time == other.page_load_time
|
|
581
|
-
return false unless @playback_score == other.playback_score
|
|
582
|
-
return false unless @player_height == other.player_height
|
|
583
|
-
return false unless @player_initialization_time == other.player_initialization_time
|
|
584
|
-
return false unless @player_instance_id == other.player_instance_id
|
|
585
|
-
return false unless @player_language == other.player_language
|
|
586
|
-
return false unless @player_name == other.player_name
|
|
587
|
-
return false unless @player_poster == other.player_poster
|
|
588
|
-
return false unless @player_resolution == other.player_resolution
|
|
589
|
-
return false unless @player_software_name == other.player_software_name
|
|
590
|
-
return false unless @player_software_version == other.player_software_version
|
|
591
|
-
return false unless @player_source_domain == other.player_source_domain
|
|
592
|
-
return false unless @player_source_height == other.player_source_height
|
|
593
|
-
return false unless @player_source_width == other.player_source_width
|
|
594
|
-
return false unless @player_version == other.player_version
|
|
595
|
-
return false unless @player_view_count == other.player_view_count
|
|
596
|
-
return false unless @player_width == other.player_width
|
|
597
|
-
return false unless @property_id == other.property_id
|
|
598
|
-
return false unless @quality_of_experience_score == other.quality_of_experience_score
|
|
599
|
-
return false unless @region == other.region
|
|
600
|
-
return false unless @render_quality_score == other.render_quality_score
|
|
601
|
-
return false unless @session_id == other.session_id
|
|
602
|
-
return false unless @sign == other.sign
|
|
603
|
-
return false unless @stability_score == other.stability_score
|
|
604
|
-
return false unless @startup_score == other.startup_score
|
|
605
|
-
return false unless @sub_property_id == other.sub_property_id
|
|
606
|
-
return false unless @total_startup_time == other.total_startup_time
|
|
607
|
-
return false unless @updated_timestamp == other.updated_timestamp
|
|
608
|
-
return false unless @user_agent == other.user_agent
|
|
609
|
-
return false unless @video_content_type == other.video_content_type
|
|
610
|
-
return false unless @video_duration == other.video_duration
|
|
611
|
-
return false unless @video_encoding_variant == other.video_encoding_variant
|
|
612
|
-
return false unless @video_id == other.video_id
|
|
613
|
-
return false unless @video_language == other.video_language
|
|
614
|
-
return false unless @video_producer == other.video_producer
|
|
615
|
-
return false unless @video_resolution == other.video_resolution
|
|
616
|
-
return false unless @video_series == other.video_series
|
|
617
|
-
return false unless @video_source_domain == other.video_source_domain
|
|
618
|
-
return false unless @video_source_duration == other.video_source_duration
|
|
619
|
-
return false unless @video_source_hostname == other.video_source_hostname
|
|
620
|
-
return false unless @video_source_stream_type == other.video_source_stream_type
|
|
621
|
-
return false unless @video_source_type == other.video_source_type
|
|
622
|
-
return false unless @video_source_url == other.video_source_url
|
|
623
|
-
return false unless @video_startup_time == other.video_startup_time
|
|
624
|
-
return false unless @video_title == other.video_title
|
|
625
|
-
return false unless @video_variant_id == other.video_variant_id
|
|
626
|
-
return false unless @video_variant_name == other.video_variant_name
|
|
627
|
-
return false unless @view_end == other.view_end
|
|
628
|
-
return false unless @view_max_playhead_position == other.view_max_playhead_position
|
|
629
|
-
return false unless @view_page_url == other.view_page_url
|
|
630
|
-
return false unless @view_playing_time == other.view_playing_time
|
|
631
|
-
return false unless @view_seeked_count == other.view_seeked_count
|
|
632
|
-
return false unless @view_seeked_duration == other.view_seeked_duration
|
|
633
|
-
return false unless @view_session_id == other.view_session_id
|
|
634
|
-
return false unless @view_start == other.view_start
|
|
635
|
-
return false unless @view_total_content_playback_time == other.view_total_content_playback_time
|
|
636
|
-
return false unless @viewer_id == other.viewer_id
|
|
637
|
-
return false unless @watch_time == other.watch_time
|
|
638
|
-
true
|
|
515
|
+
|
|
516
|
+
[@beacon_domain, @custom, @exit_before_video_start, @insert_timestamp, @ip_address,
|
|
517
|
+
@os_version, @player_autoplay_on, @player_preload_on, @player_remote_played, @used_full_screen,
|
|
518
|
+
@video_startup_failed, @view_has_ad, @view_has_error, @view_id, @workspace_id,
|
|
519
|
+
@events, @asn_id, @asn_name, @average_bitrate, @avg_downscaling,
|
|
520
|
+
@avg_request_latency, @avg_request_throughput, @avg_upscaling, @browser_engine, @browser_name,
|
|
521
|
+
@browser_version, @buffer_count, @buffer_fill, @buffer_frequency, @buffer_ratio,
|
|
522
|
+
@cdn, @city, @connection_type, @continent, @country,
|
|
523
|
+
@country_code, @device_manufacturer, @device_model, @device_name, @device_type,
|
|
524
|
+
@drm_type, @dropped_frame_count, @error_code, @error_context, @error_id,
|
|
525
|
+
@error_message, @experiment_name, @fp_api_version, @fp_embed, @fp_embed_version,
|
|
526
|
+
@fp_live_stream_id, @fp_playback_id, @fp_sdk, @fp_sdk_version, @fp_viewer_id,
|
|
527
|
+
@jump_latency, @latitude, @live_stream_latency, @longitude, @max_downscaling,
|
|
528
|
+
@max_request_latency, @max_upscaling, @media_id, @os_name, @page_context,
|
|
529
|
+
@page_load_time, @playback_score, @player_height, @player_initialization_time, @player_instance_id,
|
|
530
|
+
@player_language, @player_name, @player_poster, @player_resolution, @player_software_name,
|
|
531
|
+
@player_software_version, @player_source_domain, @player_source_height, @player_source_width, @player_version,
|
|
532
|
+
@player_view_count, @player_width, @property_id, @quality_of_experience_score, @region,
|
|
533
|
+
@render_quality_score, @session_id, @sign, @stability_score, @startup_score,
|
|
534
|
+
@sub_property_id, @total_startup_time, @updated_timestamp, @user_agent, @video_content_type,
|
|
535
|
+
@video_duration, @video_encoding_variant, @video_id, @video_language, @video_producer,
|
|
536
|
+
@video_resolution, @video_series, @video_source_domain, @video_source_duration, @video_source_hostname,
|
|
537
|
+
@video_source_stream_type, @video_source_type, @video_source_url, @video_startup_time, @video_title,
|
|
538
|
+
@video_variant_id, @video_variant_name, @view_end, @view_max_playhead_position, @view_page_url,
|
|
539
|
+
@view_playing_time, @view_seeked_count, @view_seeked_duration, @view_session_id, @view_start,
|
|
540
|
+
@view_total_content_playback_time, @viewer_id, @watch_time] ==
|
|
541
|
+
[other.beacon_domain, other.custom, other.exit_before_video_start, other.insert_timestamp, other.ip_address,
|
|
542
|
+
other.os_version, other.player_autoplay_on, other.player_preload_on, other.player_remote_played, other.used_full_screen,
|
|
543
|
+
other.video_startup_failed, other.view_has_ad, other.view_has_error, other.view_id, other.workspace_id,
|
|
544
|
+
other.events, other.asn_id, other.asn_name, other.average_bitrate, other.avg_downscaling,
|
|
545
|
+
other.avg_request_latency, other.avg_request_throughput, other.avg_upscaling, other.browser_engine, other.browser_name,
|
|
546
|
+
other.browser_version, other.buffer_count, other.buffer_fill, other.buffer_frequency, other.buffer_ratio,
|
|
547
|
+
other.cdn, other.city, other.connection_type, other.continent, other.country,
|
|
548
|
+
other.country_code, other.device_manufacturer, other.device_model, other.device_name, other.device_type,
|
|
549
|
+
other.drm_type, other.dropped_frame_count, other.error_code, other.error_context, other.error_id,
|
|
550
|
+
other.error_message, other.experiment_name, other.fp_api_version, other.fp_embed, other.fp_embed_version,
|
|
551
|
+
other.fp_live_stream_id, other.fp_playback_id, other.fp_sdk, other.fp_sdk_version, other.fp_viewer_id,
|
|
552
|
+
other.jump_latency, other.latitude, other.live_stream_latency, other.longitude, other.max_downscaling,
|
|
553
|
+
other.max_request_latency, other.max_upscaling, other.media_id, other.os_name, other.page_context,
|
|
554
|
+
other.page_load_time, other.playback_score, other.player_height, other.player_initialization_time, other.player_instance_id,
|
|
555
|
+
other.player_language, other.player_name, other.player_poster, other.player_resolution, other.player_software_name,
|
|
556
|
+
other.player_software_version, other.player_source_domain, other.player_source_height, other.player_source_width, other.player_version,
|
|
557
|
+
other.player_view_count, other.player_width, other.property_id, other.quality_of_experience_score, other.region,
|
|
558
|
+
other.render_quality_score, other.session_id, other.sign, other.stability_score, other.startup_score,
|
|
559
|
+
other.sub_property_id, other.total_startup_time, other.updated_timestamp, other.user_agent, other.video_content_type,
|
|
560
|
+
other.video_duration, other.video_encoding_variant, other.video_id, other.video_language, other.video_producer,
|
|
561
|
+
other.video_resolution, other.video_series, other.video_source_domain, other.video_source_duration, other.video_source_hostname,
|
|
562
|
+
other.video_source_stream_type, other.video_source_type, other.video_source_url, other.video_startup_time, other.video_title,
|
|
563
|
+
other.video_variant_id, other.video_variant_name, other.view_end, other.view_max_playhead_position, other.view_page_url,
|
|
564
|
+
other.view_playing_time, other.view_seeked_count, other.view_seeked_duration, other.view_session_id, other.view_start,
|
|
565
|
+
other.view_total_content_playback_time, other.viewer_id, other.watch_time]
|
|
639
566
|
end
|
|
640
567
|
|
|
641
568
|
def to_dict
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Generated code for FastPix API SDK.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
module FastpixClient
|
|
7
|
+
module Models
|
|
8
|
+
module Errors
|
|
9
|
+
|
|
10
|
+
# Raised when an HTTP call completes without returning a response object.
|
|
11
|
+
class EmptyResponseError < StandardError
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -89,26 +89,15 @@ module FastpixClient
|
|
|
89
89
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
90
90
|
def ==(other)
|
|
91
91
|
return false unless other.is_a? self.class
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
return false unless @source_access == other.source_access
|
|
102
|
-
return false unless @mp4_support == other.mp4_support
|
|
103
|
-
return false unless @summary == other.summary
|
|
104
|
-
return false unless @chapters == other.chapters
|
|
105
|
-
return false unless @named_entities == other.named_entities
|
|
106
|
-
return false unless @moderation == other.moderation
|
|
107
|
-
return false unless @access_restrictions == other.access_restrictions
|
|
108
|
-
return false unless @access_policy == other.access_policy
|
|
109
|
-
return false unless @max_resolution == other.max_resolution
|
|
110
|
-
return false unless @media_quality == other.media_quality
|
|
111
|
-
true
|
|
92
|
+
|
|
93
|
+
[@start_time, @end_time, @inputs, @metadata, @drm_configuration_id,
|
|
94
|
+
@title, @creator_id, @subtitles, @optimize_audio, @source_access,
|
|
95
|
+
@mp4_support, @summary, @chapters, @named_entities, @moderation,
|
|
96
|
+
@access_restrictions, @access_policy, @max_resolution, @media_quality] ==
|
|
97
|
+
[other.start_time, other.end_time, other.inputs, other.metadata, other.drm_configuration_id,
|
|
98
|
+
other.title, other.creator_id, other.subtitles, other.optimize_audio, other.source_access,
|
|
99
|
+
other.mp4_support, other.summary, other.chapters, other.named_entities, other.moderation,
|
|
100
|
+
other.access_restrictions, other.access_policy, other.max_resolution, other.media_quality]
|
|
112
101
|
end
|
|
113
102
|
end
|
|
114
103
|
end
|