vzaar_api 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +4 -0
- data/.tool-versions +1 -0
- data/.travis.yml +3 -0
- data/Changelog +50 -0
- data/Gemfile +3 -0
- data/Guardfile +25 -0
- data/README.md +55 -0
- data/Rakefile +26 -0
- data/examples/README.md +33 -0
- data/examples/api_envs.yml.example +31 -0
- data/examples/category/create_update_delete_spec.rb +100 -0
- data/examples/category/list_spec.rb +38 -0
- data/examples/category/list_subtree_spec.rb +40 -0
- data/examples/category/lookup_spec.rb +35 -0
- data/examples/encoding_preset/list_spec.rb +38 -0
- data/examples/encoding_preset/lookup_spec.rb +35 -0
- data/examples/ingest_recipe/create_update_delete_spec.rb +70 -0
- data/examples/ingest_recipe/list_spec.rb +38 -0
- data/examples/ingest_recipe/lookup_spec.rb +35 -0
- data/examples/playlist/create_update_delete_spec.rb +97 -0
- data/examples/playlist/list_spec.rb +37 -0
- data/examples/playlist/lookup_spec.rb +34 -0
- data/examples/rate_limit_spec.rb +18 -0
- data/examples/spec_helper.rb +17 -0
- data/examples/support/helpers.rb +16 -0
- data/examples/support/videos/medium.mp4 +0 -0
- data/examples/support/videos/small.mp4 +0 -0
- data/examples/video/create_update_delete_spec.rb +73 -0
- data/lib/vzaar_api/abstract.rb +9 -0
- data/lib/vzaar_api/category.rb +39 -0
- data/lib/vzaar_api/encoding_preset.rb +19 -0
- data/lib/vzaar_api/ingest_recipe.rb +35 -0
- data/lib/vzaar_api/legacy_rendition.rb +11 -0
- data/lib/vzaar_api/lib/active_object.rb +92 -0
- data/lib/vzaar_api/lib/api.rb +54 -0
- data/lib/vzaar_api/lib/api_response.rb +61 -0
- data/lib/vzaar_api/lib/has_attributes.rb +49 -0
- data/lib/vzaar_api/lib/has_collection_builder.rb +17 -0
- data/lib/vzaar_api/lib/has_resource_url.rb +24 -0
- data/lib/vzaar_api/lib/paged_resource.rb +80 -0
- data/lib/vzaar_api/lib/will_paginate.rb +22 -0
- data/lib/vzaar_api/link_upload.rb +14 -0
- data/lib/vzaar_api/playlist.rb +29 -0
- data/lib/vzaar_api/rendition.rb +16 -0
- data/lib/vzaar_api/signature/abstract.rb +40 -0
- data/lib/vzaar_api/signature/factory.rb +39 -0
- data/lib/vzaar_api/signature/multipart.rb +23 -0
- data/lib/vzaar_api/signature/single.rb +17 -0
- data/lib/vzaar_api/strategy/video/create.rb +46 -0
- data/lib/vzaar_api/upload/s3.rb +90 -0
- data/lib/vzaar_api/upload/virtual_file.rb +14 -0
- data/lib/vzaar_api/version.rb +4 -0
- data/lib/vzaar_api/video.rb +38 -0
- data/lib/vzaar_api.rb +60 -0
- data/spec/fixtures/vcr_cassettes/categories/each_item.yml +363 -0
- data/spec/fixtures/vcr_cassettes/categories/find.yml +61 -0
- data/spec/fixtures/vcr_cassettes/categories/find_404.yml +49 -0
- data/spec/fixtures/vcr_cassettes/categories/paginate_first.yml +61 -0
- data/spec/fixtures/vcr_cassettes/categories/paginate_last.yml +119 -0
- data/spec/fixtures/vcr_cassettes/categories/paginate_next.yml +120 -0
- data/spec/fixtures/vcr_cassettes/categories/paginate_previous.yml +120 -0
- data/spec/fixtures/vcr_cassettes/categories/subtree.yml +127 -0
- data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_first.yml +123 -0
- data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_last.yml +185 -0
- data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_next.yml +184 -0
- data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_previous.yml +184 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/each_item.yml +299 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/find.yml +62 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/find_404.yml +51 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_first.yml +62 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_last.yml +121 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_next.yml +121 -0
- data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_previous.yml +121 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/create_200.yml +63 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/create_422.yml +52 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/delete_204.yml +166 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/delete_422.yml +112 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/each_item.yml +182 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/find.yml +62 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/find_404.yml +51 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_first.yml +62 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_last.yml +122 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_next.yml +121 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_previous.yml +122 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/update_200.yml +242 -0
- data/spec/fixtures/vcr_cassettes/ingest_recipes/update_422.yml +113 -0
- data/spec/fixtures/vcr_cassettes/playlists/each_item.yml +607 -0
- data/spec/fixtures/vcr_cassettes/playlists/find.yml +66 -0
- data/spec/fixtures/vcr_cassettes/playlists/find_404.yml +51 -0
- data/spec/fixtures/vcr_cassettes/playlists/paginate_first.yml +74 -0
- data/spec/fixtures/vcr_cassettes/playlists/paginate_last.yml +146 -0
- data/spec/fixtures/vcr_cassettes/playlists/paginate_next.yml +145 -0
- data/spec/fixtures/vcr_cassettes/playlists/paginate_previous.yml +145 -0
- data/spec/fixtures/vcr_cassettes/signature/multipart_201.yml +62 -0
- data/spec/fixtures/vcr_cassettes/signature/multipart_422.yml +52 -0
- data/spec/fixtures/vcr_cassettes/signature/single_201.yml +62 -0
- data/spec/fixtures/vcr_cassettes/signature/single_422.yml +51 -0
- data/spec/fixtures/vcr_cassettes/upload/multipart_201.yml +279868 -0
- data/spec/fixtures/vcr_cassettes/upload/multipart_403.yml +116578 -0
- data/spec/fixtures/vcr_cassettes/upload/single_201.yml +23388 -0
- data/spec/fixtures/vcr_cassettes/upload/single_403.yml +23374 -0
- data/spec/fixtures/vcr_cassettes/videos/create/error.yml +51 -0
- data/spec/fixtures/vcr_cassettes/videos/create/guid_201.yml +65 -0
- data/spec/fixtures/vcr_cassettes/videos/create/guid_error.yml +52 -0
- data/spec/fixtures/vcr_cassettes/videos/create/link_201.yml +65 -0
- data/spec/fixtures/vcr_cassettes/videos/create/link_error.yml +51 -0
- data/spec/fixtures/vcr_cassettes/videos/create/path_201.yml +23509 -0
- data/spec/fixtures/vcr_cassettes/videos/delete_204.yml +168 -0
- data/spec/fixtures/vcr_cassettes/videos/find.yml +66 -0
- data/spec/fixtures/vcr_cassettes/videos/find_404.yml +51 -0
- data/spec/fixtures/vcr_cassettes/videos/paginate_first.yml +71 -0
- data/spec/fixtures/vcr_cassettes/videos/paginate_last.yml +137 -0
- data/spec/fixtures/vcr_cassettes/videos/paginate_next.yml +139 -0
- data/spec/fixtures/vcr_cassettes/videos/paginate_previous.yml +139 -0
- data/spec/spec_helper.rb +103 -0
- data/spec/support/files/video-1.0MB.mp4 +0 -0
- data/spec/support/files/video-12.0MB.mp4 +0 -0
- data/spec/support/files/video-4.9MB.mp4 +0 -0
- data/spec/support/files/video-5.0MB.mp4 +0 -0
- data/spec/support/helpers.rb +16 -0
- data/spec/vzaar_api/category_spec.rb +141 -0
- data/spec/vzaar_api/encoding_preset_spec.rb +92 -0
- data/spec/vzaar_api/ingest_recipe_spec.rb +197 -0
- data/spec/vzaar_api/lib/api_spec.rb +28 -0
- data/spec/vzaar_api/playlist_spec.rb +97 -0
- data/spec/vzaar_api/rendition_spec.rb +55 -0
- data/spec/vzaar_api/signature/factory_spec.rb +68 -0
- data/spec/vzaar_api/signature/multipart_spec.rb +81 -0
- data/spec/vzaar_api/signature/single_spec.rb +72 -0
- data/spec/vzaar_api/upload/s3_spec.rb +112 -0
- data/spec/vzaar_api/video_spec.rb +248 -0
- data/spec/vzaar_api/vzaar_api_spec.rb +18 -0
- data/spec/vzaar_api_helper.rb +19 -0
- data/vzaar.png +0 -0
- data/vzaar_api.gemspec +35 -0
- metadata +413 -0
@@ -0,0 +1,182 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes?per_page=2
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '4420'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
X-RateLimit-Limit:
|
38
|
+
- '200'
|
39
|
+
X-RateLimit-Remaining:
|
40
|
+
- '199'
|
41
|
+
X-RateLimit-Reset:
|
42
|
+
- '1479487166'
|
43
|
+
X-RateLimit-Reset-In:
|
44
|
+
- 60 seconds
|
45
|
+
Cache-Control:
|
46
|
+
- no-store, must-revalidate, private, max-age=0
|
47
|
+
X-Request-Id:
|
48
|
+
- ab07afde-ffe5-457e-8672-77ba2daba579
|
49
|
+
X-Runtime:
|
50
|
+
- '0.095979'
|
51
|
+
Set-Cookie:
|
52
|
+
- __profilin=p%3Dt; path=/
|
53
|
+
- __profilin=p%3Dt; path=/
|
54
|
+
- __profilin=p%3Dt; path=/
|
55
|
+
X-Miniprofiler-Ids:
|
56
|
+
- '["ka44i0n3yix75q3rd3f1","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"data":[{"id":1,"name":"new-video","recipe_type":"new_video","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":3,"name":"SD","description":"360p","output_format":"mp4","bitrate_kbps":800,"long_dimension":640,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":9,"name":"DNE","description":"Source","output_format":"mp4","bitrate_kbps":null,"long_dimension":null,"video_codec":null,"profile":null,"frame_rate":null,"keyframe":null,"audio_bitrate_kbps":null,"audio_channels":null,"audio_sample_rate":null,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-16T12:46:28.000Z"},{"id":2,"name":"test-1","recipe_type":"test","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":false,"send_to_youtube":true,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":8,"name":"XHD","description":"10kp","output_format":"mp4","bitrate_kbps":99999,"long_dimension":3840,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=2","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=2&per_page=2","previous":null,"last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=3&per_page=2"}}}'
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 18 Nov 2016 16:38:26 GMT
|
62
|
+
- request:
|
63
|
+
method: get
|
64
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes
|
65
|
+
body:
|
66
|
+
encoding: UTF-8
|
67
|
+
string: ''
|
68
|
+
headers:
|
69
|
+
User-Agent:
|
70
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
71
|
+
Accept:
|
72
|
+
- "*/*"
|
73
|
+
Date:
|
74
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
75
|
+
X-Auth-Token:
|
76
|
+
- TUGXzNL17ypaougMYpR3
|
77
|
+
X-Client-Id:
|
78
|
+
- lair-tend72
|
79
|
+
Content-Type:
|
80
|
+
- application/json
|
81
|
+
response:
|
82
|
+
status:
|
83
|
+
code: 200
|
84
|
+
message: OK
|
85
|
+
headers:
|
86
|
+
Server:
|
87
|
+
- nginx/1.10.1
|
88
|
+
Date:
|
89
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
90
|
+
Content-Type:
|
91
|
+
- application/json
|
92
|
+
Content-Length:
|
93
|
+
- '4139'
|
94
|
+
Connection:
|
95
|
+
- keep-alive
|
96
|
+
X-RateLimit-Limit:
|
97
|
+
- '200'
|
98
|
+
X-RateLimit-Remaining:
|
99
|
+
- '198'
|
100
|
+
X-RateLimit-Reset:
|
101
|
+
- '1479487166'
|
102
|
+
X-RateLimit-Reset-In:
|
103
|
+
- 60 seconds
|
104
|
+
Cache-Control:
|
105
|
+
- no-store, must-revalidate, private, max-age=0
|
106
|
+
X-Request-Id:
|
107
|
+
- 2313cc73-1f70-40f8-9a94-e82c80b217f0
|
108
|
+
X-Runtime:
|
109
|
+
- '0.067332'
|
110
|
+
Set-Cookie:
|
111
|
+
- __profilin=p%3Dt; path=/
|
112
|
+
- __profilin=p%3Dt; path=/
|
113
|
+
- __profilin=p%3Dt; path=/
|
114
|
+
X-Miniprofiler-Ids:
|
115
|
+
- '["1xctv9cr2gwt9n3pqhw6","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
116
|
+
body:
|
117
|
+
encoding: UTF-8
|
118
|
+
string: '{"data":[{"id":3,"name":"test-2","recipe_type":"test","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":false,"generate_sprite":false,"use_watermark":false,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":8,"name":"XHD","description":"10kp","output_format":"mp4","bitrate_kbps":99999,"long_dimension":3840,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":5,"name":"Test
|
119
|
+
updated!","recipe_type":"new_video","description":"Test is now something else","account_id":79357,"user_id":79357,"default":false,"multipass":true,"frame_grab_time":"1.0","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":true,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":5,"name":"HD","description":"720p","output_format":"mp4","bitrate_kbps":3942,"long_dimension":1280,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-16T10:57:36.000Z","updated_at":"2016-11-16T11:02:32.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=2","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=3&per_page=2","previous":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=2","last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=3&per_page=2"}}}'
|
120
|
+
http_version:
|
121
|
+
recorded_at: Fri, 18 Nov 2016 16:38:26 GMT
|
122
|
+
- request:
|
123
|
+
method: get
|
124
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes
|
125
|
+
body:
|
126
|
+
encoding: UTF-8
|
127
|
+
string: ''
|
128
|
+
headers:
|
129
|
+
User-Agent:
|
130
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
131
|
+
Accept:
|
132
|
+
- "*/*"
|
133
|
+
Date:
|
134
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
135
|
+
X-Auth-Token:
|
136
|
+
- TUGXzNL17ypaougMYpR3
|
137
|
+
X-Client-Id:
|
138
|
+
- lair-tend72
|
139
|
+
Content-Type:
|
140
|
+
- application/json
|
141
|
+
response:
|
142
|
+
status:
|
143
|
+
code: 200
|
144
|
+
message: OK
|
145
|
+
headers:
|
146
|
+
Server:
|
147
|
+
- nginx/1.10.1
|
148
|
+
Date:
|
149
|
+
- Fri, 18 Nov 2016 16:38:26 GMT
|
150
|
+
Content-Type:
|
151
|
+
- application/json
|
152
|
+
Content-Length:
|
153
|
+
- '1421'
|
154
|
+
Connection:
|
155
|
+
- keep-alive
|
156
|
+
X-RateLimit-Limit:
|
157
|
+
- '200'
|
158
|
+
X-RateLimit-Remaining:
|
159
|
+
- '197'
|
160
|
+
X-RateLimit-Reset:
|
161
|
+
- '1479487166'
|
162
|
+
X-RateLimit-Reset-In:
|
163
|
+
- 60 seconds
|
164
|
+
Cache-Control:
|
165
|
+
- no-store, must-revalidate, private, max-age=0
|
166
|
+
X-Request-Id:
|
167
|
+
- d299babb-d5cc-4b15-97b3-f1ac4710b723
|
168
|
+
X-Runtime:
|
169
|
+
- '0.049371'
|
170
|
+
Set-Cookie:
|
171
|
+
- __profilin=p%3Dt; path=/
|
172
|
+
- __profilin=p%3Dt; path=/
|
173
|
+
- __profilin=p%3Dt; path=/
|
174
|
+
X-Miniprofiler-Ids:
|
175
|
+
- '["4vm4092p6pv1erz6586t","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
176
|
+
body:
|
177
|
+
encoding: UTF-8
|
178
|
+
string: '{"data":[{"id":8,"name":"updated","recipe_type":"new_video","description":"the
|
179
|
+
new recipe","account_id":79357,"user_id":79357,"default":true,"multipass":false,"frame_grab_time":"5.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":true,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-18T10:25:47.000Z","updated_at":"2016-11-18T11:20:06.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=2","next":null,"previous":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=2&per_page=2","last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=3&per_page=2"}}}'
|
180
|
+
http_version:
|
181
|
+
recorded_at: Fri, 18 Nov 2016 16:38:26 GMT
|
182
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes/1
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 11 Nov 2016 15:39:14 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 11 Nov 2016 15:39:14 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '2261'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
X-RateLimit-Limit:
|
38
|
+
- '200'
|
39
|
+
X-RateLimit-Remaining:
|
40
|
+
- '198'
|
41
|
+
X-RateLimit-Reset:
|
42
|
+
- '1478878814'
|
43
|
+
X-RateLimit-Reset-In:
|
44
|
+
- 60 seconds
|
45
|
+
Cache-Control:
|
46
|
+
- no-store, must-revalidate, private, max-age=0
|
47
|
+
X-Request-Id:
|
48
|
+
- 7967b26f-0949-4700-9fe0-1a308093c1c4
|
49
|
+
X-Runtime:
|
50
|
+
- '0.069582'
|
51
|
+
Set-Cookie:
|
52
|
+
- __profilin=p%3Dt; path=/
|
53
|
+
- __profilin=p%3Dt; path=/
|
54
|
+
- __profilin=p%3Dt; path=/
|
55
|
+
X-Miniprofiler-Ids:
|
56
|
+
- '["iqvtk58os9c6x8lopgft","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"data":{"id":1,"name":"new-video","recipe_type":"new_video","description":null,"account_id":79357,"user_id":79357,"default":true,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":3,"name":"SD","description":"360p","output_format":"mp4","bitrate_kbps":800,"long_dimension":640,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":9,"name":"DNE","description":"Source","output_format":"mp4","bitrate_kbps":null,"long_dimension":null,"video_codec":null,"profile":null,"frame_rate":null,"keyframe":null,"audio_bitrate_kbps":null,"audio_channels":null,"audio_sample_rate":null,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}}'
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 11 Nov 2016 15:39:14 GMT
|
62
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,51 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes/-1
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 11 Nov 2016 15:39:14 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 404
|
25
|
+
message: Not Found
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 11 Nov 2016 15:39:14 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '72'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
Cache-Control:
|
38
|
+
- no-cache
|
39
|
+
X-Request-Id:
|
40
|
+
- 4d37c114-a666-463b-a822-eb9201cead9d
|
41
|
+
X-Runtime:
|
42
|
+
- '0.051513'
|
43
|
+
Set-Cookie:
|
44
|
+
- __profilin=p%3Dt; path=/
|
45
|
+
- __profilin=p%3Dt; path=/
|
46
|
+
body:
|
47
|
+
encoding: UTF-8
|
48
|
+
string: '{"errors":[{"message":"Not found","detail":"Resource cannot be found"}]}'
|
49
|
+
http_version:
|
50
|
+
recorded_at: Fri, 11 Nov 2016 15:39:14 GMT
|
51
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes?per_page=1
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 18 Nov 2016 10:06:11 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 18 Nov 2016 10:06:12 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '2547'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
X-RateLimit-Limit:
|
38
|
+
- '200'
|
39
|
+
X-RateLimit-Remaining:
|
40
|
+
- '199'
|
41
|
+
X-RateLimit-Reset:
|
42
|
+
- '1479463632'
|
43
|
+
X-RateLimit-Reset-In:
|
44
|
+
- 60 seconds
|
45
|
+
Cache-Control:
|
46
|
+
- no-store, must-revalidate, private, max-age=0
|
47
|
+
X-Request-Id:
|
48
|
+
- 548fc3d8-5feb-4dba-aaf0-5dde831349a8
|
49
|
+
X-Runtime:
|
50
|
+
- '0.580668'
|
51
|
+
Set-Cookie:
|
52
|
+
- __profilin=p%3Dt; path=/
|
53
|
+
- __profilin=p%3Dt; path=/
|
54
|
+
- __profilin=p%3Dt; path=/
|
55
|
+
X-Miniprofiler-Ids:
|
56
|
+
- '["baall2khsldbr18gnyki","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"data":[{"id":1,"name":"new-video","recipe_type":"new_video","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":3,"name":"SD","description":"360p","output_format":"mp4","bitrate_kbps":800,"long_dimension":640,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":9,"name":"DNE","description":"Source","output_format":"mp4","bitrate_kbps":null,"long_dimension":null,"video_codec":null,"profile":null,"frame_rate":null,"keyframe":null,"audio_bitrate_kbps":null,"audio_channels":null,"audio_sample_rate":null,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-16T12:46:28.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=2&per_page=1","previous":null,"last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=5&per_page=1"}}}'
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 18 Nov 2016 10:06:12 GMT
|
62
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,122 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes?per_page=1
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '2547'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
X-RateLimit-Limit:
|
38
|
+
- '200'
|
39
|
+
X-RateLimit-Remaining:
|
40
|
+
- '196'
|
41
|
+
X-RateLimit-Reset:
|
42
|
+
- '1479463658'
|
43
|
+
X-RateLimit-Reset-In:
|
44
|
+
- 60 seconds
|
45
|
+
Cache-Control:
|
46
|
+
- no-store, must-revalidate, private, max-age=0
|
47
|
+
X-Request-Id:
|
48
|
+
- feb06fca-27e7-4778-a37f-b074faf3b69f
|
49
|
+
X-Runtime:
|
50
|
+
- '0.063423'
|
51
|
+
Set-Cookie:
|
52
|
+
- __profilin=p%3Dt; path=/
|
53
|
+
- __profilin=p%3Dt; path=/
|
54
|
+
- __profilin=p%3Dt; path=/
|
55
|
+
X-Miniprofiler-Ids:
|
56
|
+
- '["8kh5uk4cnln5whh465zy","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"data":[{"id":1,"name":"new-video","recipe_type":"new_video","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":3,"name":"SD","description":"360p","output_format":"mp4","bitrate_kbps":800,"long_dimension":640,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":9,"name":"DNE","description":"Source","output_format":"mp4","bitrate_kbps":null,"long_dimension":null,"video_codec":null,"profile":null,"frame_rate":null,"keyframe":null,"audio_bitrate_kbps":null,"audio_channels":null,"audio_sample_rate":null,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-16T12:46:28.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=2&per_page=1","previous":null,"last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=5&per_page=1"}}}'
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 18 Nov 2016 10:06:38 GMT
|
62
|
+
- request:
|
63
|
+
method: get
|
64
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes
|
65
|
+
body:
|
66
|
+
encoding: UTF-8
|
67
|
+
string: ''
|
68
|
+
headers:
|
69
|
+
User-Agent:
|
70
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
71
|
+
Accept:
|
72
|
+
- "*/*"
|
73
|
+
Date:
|
74
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
75
|
+
X-Auth-Token:
|
76
|
+
- TUGXzNL17ypaougMYpR3
|
77
|
+
X-Client-Id:
|
78
|
+
- lair-tend72
|
79
|
+
Content-Type:
|
80
|
+
- application/json
|
81
|
+
response:
|
82
|
+
status:
|
83
|
+
code: 200
|
84
|
+
message: OK
|
85
|
+
headers:
|
86
|
+
Server:
|
87
|
+
- nginx/1.10.1
|
88
|
+
Date:
|
89
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
90
|
+
Content-Type:
|
91
|
+
- application/json
|
92
|
+
Content-Length:
|
93
|
+
- '2588'
|
94
|
+
Connection:
|
95
|
+
- keep-alive
|
96
|
+
X-RateLimit-Limit:
|
97
|
+
- '200'
|
98
|
+
X-RateLimit-Remaining:
|
99
|
+
- '195'
|
100
|
+
X-RateLimit-Reset:
|
101
|
+
- '1479463658'
|
102
|
+
X-RateLimit-Reset-In:
|
103
|
+
- 60 seconds
|
104
|
+
Cache-Control:
|
105
|
+
- no-store, must-revalidate, private, max-age=0
|
106
|
+
X-Request-Id:
|
107
|
+
- a9d9a2ea-468a-4e59-b98b-85afccfc0596
|
108
|
+
X-Runtime:
|
109
|
+
- '0.072844'
|
110
|
+
Set-Cookie:
|
111
|
+
- __profilin=p%3Dt; path=/
|
112
|
+
- __profilin=p%3Dt; path=/
|
113
|
+
- __profilin=p%3Dt; path=/
|
114
|
+
X-Miniprofiler-Ids:
|
115
|
+
- '["54vse3njh5t8vp3j9zqw","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
116
|
+
body:
|
117
|
+
encoding: UTF-8
|
118
|
+
string: '{"data":[{"id":7,"name":"Test updated!","recipe_type":"new_video","description":"Test
|
119
|
+
is now something else entirely!","account_id":79357,"user_id":79357,"default":true,"multipass":true,"frame_grab_time":"1.0","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":true,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":5,"name":"HD","description":"720p","output_format":"mp4","bitrate_kbps":3942,"long_dimension":1280,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":8,"name":"XHD","description":"10kp","output_format":"mp4","bitrate_kbps":99999,"long_dimension":3840,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-16T11:03:50.000Z","updated_at":"2016-11-16T12:47:02.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","next":null,"previous":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=4&per_page=1","last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=5&per_page=1"}}}'
|
120
|
+
http_version:
|
121
|
+
recorded_at: Fri, 18 Nov 2016 10:06:38 GMT
|
122
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,121 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes?per_page=1
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Fri, 18 Nov 2016 10:06:37 GMT
|
16
|
+
X-Auth-Token:
|
17
|
+
- TUGXzNL17ypaougMYpR3
|
18
|
+
X-Client-Id:
|
19
|
+
- lair-tend72
|
20
|
+
Content-Type:
|
21
|
+
- application/json
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Server:
|
28
|
+
- nginx/1.10.1
|
29
|
+
Date:
|
30
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/json
|
33
|
+
Content-Length:
|
34
|
+
- '2547'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
X-RateLimit-Limit:
|
38
|
+
- '200'
|
39
|
+
X-RateLimit-Remaining:
|
40
|
+
- '198'
|
41
|
+
X-RateLimit-Reset:
|
42
|
+
- '1479463658'
|
43
|
+
X-RateLimit-Reset-In:
|
44
|
+
- 60 seconds
|
45
|
+
Cache-Control:
|
46
|
+
- no-store, must-revalidate, private, max-age=0
|
47
|
+
X-Request-Id:
|
48
|
+
- 44cfcfda-6420-45ed-8496-1c4546e3a8cb
|
49
|
+
X-Runtime:
|
50
|
+
- '0.578723'
|
51
|
+
Set-Cookie:
|
52
|
+
- __profilin=p%3Dt; path=/
|
53
|
+
- __profilin=p%3Dt; path=/
|
54
|
+
- __profilin=p%3Dt; path=/
|
55
|
+
X-Miniprofiler-Ids:
|
56
|
+
- '["r3g1c2yhthvt6dq1thz2","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"data":[{"id":1,"name":"new-video","recipe_type":"new_video","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":true,"send_to_youtube":false,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":3,"name":"SD","description":"360p","output_format":"mp4","bitrate_kbps":800,"long_dimension":640,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":9,"name":"DNE","description":"Source","output_format":"mp4","bitrate_kbps":null,"long_dimension":null,"video_codec":null,"profile":null,"frame_rate":null,"keyframe":null,"audio_bitrate_kbps":null,"audio_channels":null,"audio_sample_rate":null,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-16T12:46:28.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=2&per_page=1","previous":null,"last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=5&per_page=1"}}}'
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 18 Nov 2016 10:06:38 GMT
|
62
|
+
- request:
|
63
|
+
method: get
|
64
|
+
uri: https://app.vzaar.localhost/api/v2/ingest_recipes
|
65
|
+
body:
|
66
|
+
encoding: UTF-8
|
67
|
+
string: ''
|
68
|
+
headers:
|
69
|
+
User-Agent:
|
70
|
+
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
|
71
|
+
Accept:
|
72
|
+
- "*/*"
|
73
|
+
Date:
|
74
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
75
|
+
X-Auth-Token:
|
76
|
+
- TUGXzNL17ypaougMYpR3
|
77
|
+
X-Client-Id:
|
78
|
+
- lair-tend72
|
79
|
+
Content-Type:
|
80
|
+
- application/json
|
81
|
+
response:
|
82
|
+
status:
|
83
|
+
code: 200
|
84
|
+
message: OK
|
85
|
+
headers:
|
86
|
+
Server:
|
87
|
+
- nginx/1.10.1
|
88
|
+
Date:
|
89
|
+
- Fri, 18 Nov 2016 10:06:38 GMT
|
90
|
+
Content-Type:
|
91
|
+
- application/json
|
92
|
+
Content-Length:
|
93
|
+
- '2231'
|
94
|
+
Connection:
|
95
|
+
- keep-alive
|
96
|
+
X-RateLimit-Limit:
|
97
|
+
- '200'
|
98
|
+
X-RateLimit-Remaining:
|
99
|
+
- '197'
|
100
|
+
X-RateLimit-Reset:
|
101
|
+
- '1479463658'
|
102
|
+
X-RateLimit-Reset-In:
|
103
|
+
- 60 seconds
|
104
|
+
Cache-Control:
|
105
|
+
- no-store, must-revalidate, private, max-age=0
|
106
|
+
X-Request-Id:
|
107
|
+
- cac9e99d-05f3-4173-9919-2f2b65b971f5
|
108
|
+
X-Runtime:
|
109
|
+
- '0.061467'
|
110
|
+
Set-Cookie:
|
111
|
+
- __profilin=p%3Dt; path=/
|
112
|
+
- __profilin=p%3Dt; path=/
|
113
|
+
- __profilin=p%3Dt; path=/
|
114
|
+
X-Miniprofiler-Ids:
|
115
|
+
- '["qr2lici1p0f10njk5ohm","yibtuiqnohudk1d26xvg","cpo3oiqmi683pkcaj816","dtxr2heeicch5rud7pjt","b4scoosnvmo0xvyqw8fy","58r4vfxumrhgue7kbsai","5dfv6js4ggxyc9qp8qwk","luelw09036g1c3l24a6i","racr2kqe0uft8glynfol","yfqme9j3k1haf6v4sm35"]'
|
116
|
+
body:
|
117
|
+
encoding: UTF-8
|
118
|
+
string: '{"data":[{"id":2,"name":"test-1","recipe_type":"test","description":null,"account_id":79357,"user_id":79357,"default":false,"multipass":false,"frame_grab_time":"3.5","generate_animated_thumb":true,"generate_sprite":true,"use_watermark":false,"send_to_youtube":true,"encoding_presets":[{"id":1,"name":"ULD","description":"234p","output_format":"mp4","bitrate_kbps":200,"long_dimension":416,"video_codec":"libx264","profile":"main","frame_rate":"12.0","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":2,"name":"LD","description":"270p","output_format":"mp4","bitrate_kbps":400,"long_dimension":480,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":6,"name":"HD","description":"1080p","output_format":"mp4","bitrate_kbps":5442,"long_dimension":1920,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"},{"id":8,"name":"XHD","description":"10kp","output_format":"mp4","bitrate_kbps":99999,"long_dimension":3840,"video_codec":"libx264","profile":"main","frame_rate":"29.97","keyframe":60,"audio_bitrate_kbps":128,"audio_channels":2,"audio_sample_rate":44100,"max_bitrate_kbps":null,"keyframe_period":null,"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"created_at":"2016-11-09T11:01:38.000Z","updated_at":"2016-11-09T11:01:38.000Z"}],"meta":{"total_count":5,"links":{"first":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","next":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=3&per_page=1","previous":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=1&per_page=1","last":"https://app.vzaar.localhost/api/v2/ingest_recipes?page=5&per_page=1"}}}'
|
119
|
+
http_version:
|
120
|
+
recorded_at: Fri, 18 Nov 2016 10:06:38 GMT
|
121
|
+
recorded_with: VCR 3.0.3
|