How to record a video in 120 fps or 240 fps using objective C The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceShortcuts in Objective-C to concatenate NSStringsWhat is a typedef enum in Objective-C?How do I sort an NSMutableArray with custom objects in it?How can I make a UITextField move up when the keyboard is present - on starting to edit?How do I check if a string contains another string in Objective-C?How to check iOS version?@import vs #import - iOS 7How to call Objective-C code from SwiftCapture iOS Simulator video for App PreviewSaving video at 120/240fps
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
What information about me do stores get via my credit card?
Does Parliament need to approve the new Brexit delay to 31 October 2019?
60's-70's movie: home appliances revolting against the owners
Using dividends to reduce short term capital gains?
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
What was the last x86 CPU that did not have the x87 floating-point unit built in?
Would an alien lifeform be able to achieve space travel if lacking in vision?
Can I visit the Trinity College (Cambridge) library and see some of their rare books
Student Loan from years ago pops up and is taking my salary
Circular reasoning in L'Hopital's rule
Python - Fishing Simulator
Does Parliament hold absolute power in the UK?
How did passengers keep warm on sail ships?
Can a flute soloist sit?
What happens to a Warlock's expended Spell Slots when they gain a Level?
US Healthcare consultation for visitors
Why not take a picture of a closer black hole?
"... to apply for a visa" or "... and applied for a visa"?
Sub-subscripts in strings cause different spacings than subscripts
Identify 80s or 90s comics with ripped creatures (not dwarves)
Do ℕ, mathbbN, BbbN, symbbN effectively differ, and is there a "canonical" specification of the naturals?
Is this wall load bearing? Blueprints and photos attached
different output for groups and groups USERNAME after adding a username to a group
How to record a video in 120 fps or 240 fps using objective C
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceShortcuts in Objective-C to concatenate NSStringsWhat is a typedef enum in Objective-C?How do I sort an NSMutableArray with custom objects in it?How can I make a UITextField move up when the keyboard is present - on starting to edit?How do I check if a string contains another string in Objective-C?How to check iOS version?@import vs #import - iOS 7How to call Objective-C code from SwiftCapture iOS Simulator video for App PreviewSaving video at 120/240fps
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Can any one help me regarding recording a video in 240 fps or 120 fps by default its taking 30 fps for recording session using AVCapture session.
Used this library record video
https://github.com/shu223/SlowMotionVideoRecorder
ios objective-c camera avfoundation
add a comment |
Can any one help me regarding recording a video in 240 fps or 120 fps by default its taking 30 fps for recording session using AVCapture session.
Used this library record video
https://github.com/shu223/SlowMotionVideoRecorder
ios objective-c camera avfoundation
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20
add a comment |
Can any one help me regarding recording a video in 240 fps or 120 fps by default its taking 30 fps for recording session using AVCapture session.
Used this library record video
https://github.com/shu223/SlowMotionVideoRecorder
ios objective-c camera avfoundation
Can any one help me regarding recording a video in 240 fps or 120 fps by default its taking 30 fps for recording session using AVCapture session.
Used this library record video
https://github.com/shu223/SlowMotionVideoRecorder
ios objective-c camera avfoundation
ios objective-c camera avfoundation
edited Mar 22 at 6:36
Harsh Srivastava
asked Mar 22 at 5:47
Harsh SrivastavaHarsh Srivastava
83
83
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20
add a comment |
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20
add a comment |
1 Answer
1
active
oldest
votes
I you are using the library you specified, you could check the ViewController.m class in the SlowMotionVideoRecorder demo class included in the repo you specified.
Here's the code to do so using the specified library:
[self.captureManager switchFormatWithDesiredFPS:desiredFps];
Here's the generic method using AVCaptureDevice as done in the library:
AVCaptureDevice *videoDevice = [AVCaptureDevicedefaultDeviceWithMediaType:AVMediaTypeVideo];
videoDevice.activeVideoMinFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
videoDevice.activeVideoMaxFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55293585%2fhow-to-record-a-video-in-120-fps-or-240-fps-using-objective-c%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I you are using the library you specified, you could check the ViewController.m class in the SlowMotionVideoRecorder demo class included in the repo you specified.
Here's the code to do so using the specified library:
[self.captureManager switchFormatWithDesiredFPS:desiredFps];
Here's the generic method using AVCaptureDevice as done in the library:
AVCaptureDevice *videoDevice = [AVCaptureDevicedefaultDeviceWithMediaType:AVMediaTypeVideo];
videoDevice.activeVideoMinFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
videoDevice.activeVideoMaxFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
add a comment |
I you are using the library you specified, you could check the ViewController.m class in the SlowMotionVideoRecorder demo class included in the repo you specified.
Here's the code to do so using the specified library:
[self.captureManager switchFormatWithDesiredFPS:desiredFps];
Here's the generic method using AVCaptureDevice as done in the library:
AVCaptureDevice *videoDevice = [AVCaptureDevicedefaultDeviceWithMediaType:AVMediaTypeVideo];
videoDevice.activeVideoMinFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
videoDevice.activeVideoMaxFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
add a comment |
I you are using the library you specified, you could check the ViewController.m class in the SlowMotionVideoRecorder demo class included in the repo you specified.
Here's the code to do so using the specified library:
[self.captureManager switchFormatWithDesiredFPS:desiredFps];
Here's the generic method using AVCaptureDevice as done in the library:
AVCaptureDevice *videoDevice = [AVCaptureDevicedefaultDeviceWithMediaType:AVMediaTypeVideo];
videoDevice.activeVideoMinFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
videoDevice.activeVideoMaxFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
I you are using the library you specified, you could check the ViewController.m class in the SlowMotionVideoRecorder demo class included in the repo you specified.
Here's the code to do so using the specified library:
[self.captureManager switchFormatWithDesiredFPS:desiredFps];
Here's the generic method using AVCaptureDevice as done in the library:
AVCaptureDevice *videoDevice = [AVCaptureDevicedefaultDeviceWithMediaType:AVMediaTypeVideo];
videoDevice.activeVideoMinFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
videoDevice.activeVideoMaxFrameDuration = CMTimeMake(1, (int32_t)desiredFPS);
edited Mar 22 at 8:59
answered Mar 22 at 6:55
Tibin ThomasTibin Thomas
671815
671815
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
add a comment |
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Yes but when I am trying to change the FPS the AVCaptureDevice is not configuring according to it. here is the console log for AVCaptureDevice object <AVCaptureDeviceFormat: 0x28265dda0 'vide'/'420v' 1920x1080, 2- 30 fps, HRSI:3264x1836, fov:54.267, supports vis, max zoom:95.62 (upscales @1.55), AF System:1, ISO:24.0-768.0, SS:0.000024-0.500000>
– Harsh Srivastava
Mar 22 at 9:01
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
Did you use the library to perform this task?
– Tibin Thomas
Mar 22 at 13:15
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55293585%2fhow-to-record-a-video-in-120-fps-or-240-fps-using-objective-c%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
add some code up to now what you tried. Developers can resolve your problem easily.
– iOS
Mar 22 at 6:20