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;








1















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










share|improve this question
























  • add some code up to now what you tried. Developers can resolve your problem easily.

    – iOS
    Mar 22 at 6:20

















1















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










share|improve this question
























  • add some code up to now what you tried. Developers can resolve your problem easily.

    – iOS
    Mar 22 at 6:20













1












1








1








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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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












1 Answer
1






active

oldest

votes


















0














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);







share|improve this answer

























  • 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











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
);



);













draft saved

draft discarded


















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









0














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);







share|improve this answer

























  • 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















0














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);







share|improve this answer

























  • 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













0












0








0







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);







share|improve this answer















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);








share|improve this answer














share|improve this answer



share|improve this answer








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

















  • 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



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript