Recording video on 24 fps?

I wish to record video in 24 fps - dearly
Is there any way to by pass the phones inbuilt regulations (30 and 60 fps)? For example, I use an app (vintage 8mm video camera), which makes my phone record, or at least appear to record, in 15 fps, so maybe there is a way?
Otherwise, do you know of any other sony phone that can record in 24 fps?
Best wishes
Coraxo

Well, 30 fps is smoother than 24 fps and that is the problem, a bit of the cinematic look is lost. The industrial standard so far is to record or at least deliver the films in 24 fps, so we are simply conditioned to associate that frame rate with a film in the cinema. A deviation is The Hobbit, which is delivered at the double, 48 fps, I have not seen it myself though but am curious.
 I read another interesting explanation on why many find 24 fps attractive, and that was that because of the less smooth expeience, we accept it as a film, and not reality, and because of this, more easily are drawn into the alternative universe the film maker creates.
At the last Sundance film festival, Tangerine, a film that was shot entirely with a phone, received a lot of praise, here is what the director says about the technical solutions:
"CP: What additional technology did you use to make shooting with an iPhone viable?
SB: We had this wonderful little anamorphic adapter that fits onto the end of the iPhone. It allowed us to shoot with a widescreen aspect ratio, which gave the film a very cinematic scope. We also used an inexpensive app called Filmic Pro; it locks exposure and focus, and most importantly it shoots at 24 frames a second. The adaptor and the app are what made me believe we could make an iPhone movie that looked like a film. I was pleasantly surprised to see that the film has a Super 16 feel on the big screen. [In post-production] we added grain and pumped up the colors, which added to the cinematic look and achieved something unique."
(For android I believe 'Cinema FV-5' is a corresponding app)
Anyway, in the end it boils down to taste.

Similar Messages

  • FMS stop recording video in middle of recording

    I am trying to record the h.264 long video through fms server side code(more than 2 hour), but video recording is stopped before I stop publishing the video, and it’s not throwing any error in server side as well as client side, I have given the video recording code
    stream=Stream.get("mp4:testStream.f4v");
      if(stream)
      stream.record("append");
      stream.play(streamName, -1, -1);
    and recorded video also not playing fine, its stuck in middle. should I need to modify anything? Any help are appreciated......

    For publishing I am using the action script code, It stops after 40 min some time its recording fine upto two hours I count find where its stoping and why its happening, I am giving the server side code and client publishing code and the log with this
    Server side code
    application.onAppStart = function()
         trace("app fme started!");
         application.message_so = SharedObject.get( "message");
         // Initialize the unique user ID
         application.noOfUser = 0;
    application.onConnect = function(client)
         this.acceptConnection(client);
         client.id = "u" + application.noOfUser++;    
         client.recordStream=function(streamName)
                   trace('record called');
                   stream=Stream.get("mp4:"+streamName+".f4v");
                   if(stream)
                        stream.record("append");                   
                        stream.play(streamName, -1, -1);
                        live=true;                         
         client.stopRecordingStream=function(streamName)
              stream=Stream.get("mp4:"+streamName+".f4v");
              if(stream)
                   stream.flush();
                   msg=stream.record(false);
                   live=false;
                   stream.play(false);              
    application.onPublish = function (client, stream)
    application.onUnpublish = function(client, stream)
    client side code
    private function publishCamera():void {                   
         ns = new NetStream(nc);                   
         if(cmbEncoder.selectedItem.data=="Sorenson")
              ns.videoStreamSettings=new VideoStreamSettings();
         else//H.264
              var h264Codec:H264VideoStreamSettings=new H264VideoStreamSettings();         
              h264Codec.setKeyFrameInterval(12);
              h264Codec.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_5_1);
              ns.videoStreamSettings=h264Codec;
         cam = Camera.getCamera(cmbCamera.selectedIndex.toString());
         mic = Microphone.getMicrophone(cmbMicroPhone.selectedIndex);
         var resolutionWidth:Number;
         var resolutionHeight:Number;
         var videoQuality:Number;
         resolutionWidth=768;
         resolutionHeight=576;                   
         ns.client = this;
         ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
         ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);
         videoQuality=(Number(cmbBandWidth.selectedItem.data)/8)*1024;
         cam.setQuality(videoQuality, 0);    
         /* Set the mode of the camera component
         width, height, fps
         this will be the recorded size of the video
         cam.setMode(resolutionWidth,resolutionHeight,12);    
         mic.rate = 11;
         ns.attachCamera(cam);
         ns.attachAudio(mic);         
         ns.publish("mp4:testStream.f4v");
         nc.call('recordStream',null,'testStream');    
    core.00.log
    #Version: 1.0
    #Start-Date: 2012-09-07 10:06:18
    #Software: Adobe Flash Media Server 4.0.0 r1121 x86
    #Date: 2012-09-07
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-09-07          10:06:18          1180          (i)2631174          Listener started ( _defaultRoot_ ) : 192.168.173.184:19350 (rtmfp-core)/v4          -
    2012-09-07          10:06:18          1180          (i)2631174          Listener started ( _defaultRoot_ ) : 127.0.0.1:19350 (rtmfp-core)/v4          -
    2012-09-07          10:06:18          1180          (i)2631509          Public rtmfp-core addresses for listener _defaultRoot_ are: 192.168.173.184:19350;127.0.0.1:19350          -
    2012-09-07          10:06:18          1180          (i)2581246          Core (1180) sending register cmd to edge.          -
    #Date: 2012-09-07
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-09-07          11:39:02          5696          (i)2581237          Starting admin app on core (5696).          -
    2012-09-07          11:39:02          5696          (i)2581238          Core (5696) connecting to admin.          -
    2012-09-07          11:39:02          5696          (i)2581231          Core (5696) connected to admin.          -
    2012-09-07          11:39:02          5696          (i)2631174          Listener started ( _defaultRoot_ ) : 192.168.173.184:19352 (rtmfp-core)/v4          -
    2012-09-07          11:39:02          5696          (i)2631174          Listener started ( _defaultRoot_ ) : 127.0.0.1:19352 (rtmfp-core)/v4          -
    2012-09-07          11:39:02          5696          (i)2631509          Public rtmfp-core addresses for listener _defaultRoot_ are: 192.168.173.184:19352;127.0.0.1:19352          -
    2012-09-07          11:39:02          5696          (i)2581246          Core (5696) sending register cmd to edge.          -
    2012-09-07          11:39:02          5696          (i)2581234          Core (5696) connection to admin accepted.          -

  • Continuos acquisition video and record video in AVI format

    Hello,
    I want to make a continuos acquisition of video with a webcam and record video in AVI format with a number of frames per second equal to 60, and with a possibility to choose the period of acquisition in the window '' front panal '' but the problem is that when I selected an acquisition time of 1 minute supervision
    video takes a time of 1 minute but I get an AVI video recorded with a duration of 15 seconds !!
    Attachments:
    1 caméras.vi ‏40 KB

    I'm sorry, you didn't understand what I wanted you to do.  You might have "done the right thing", but I can't be sure.  Your original program (as I understood it) recorded images from the camera for a fixed period of time that you set (so you knew the recording time) -- what I wanted to know for the original camera was (a) what was the recording time and (b) how many frames were taken.
    The second program that you just attached does the opposite -- it records a fixed number of frames (a better way to do this is to use a FOR loop and just wire 900 to N in the upper left hand corner).  If you are going to record a fixed number of frames, then I want to know how much time it takes to record.  You can do this by doing something like what is shown below (with the FOR loop example).
    I realize that this is in the "wrong" version of LabVIEW, but it just involves adding two Tick Count functions to your Camera loop.  If it does say that Delta-t = 15000 (15 seconds), then the main question, "Is the camera recording at 60 FPS", is answered as "Yes".  In any case, we should have enough data to make your code work as you want it to.
    Bob Schor 

  • Recording video, pausing it and resume recording video

    While recording a video on the iPhone 5S, it can pause the video recording for a while and it can resume back the video recording as well just like that?

    60FPS will make the video smoother and is better when capturing fast moving objects. A higher FPS will however make the video file larger and if you plan to play the video on another device that device must also support playback of 60FPS.
    The auto mode uses 30FPS and there's no setting to change this.
    If you take a picture while recording video in auto mode it will have the same resolution as the video, 1920x1080. You can see the resolution of a picture if you open it in Album and tap [menu] -> Details.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Recorded Videos after Sync: The requested URL was not found on this server.

    A few days ago, i recorded a couple of videos. They were saved properly and i could watch them after it in the Camera Roll of my iPhone. Because my memory was almost full, i connected my iPhone to my MacBook and synchronized about 900 old pictures with iPhoto and selected to delete the pictures after the sync. I did not select the recently recorded videos.
    After the sync, i opened the Camera Roll on my iPhone and tried to watch the videos again. But now, they all have a grey icon and it says the duration is 0:00 minutes. When i click on a video, it shows me the following error message:
    The requested URL was not found on this server.
    When i connect my iPhone to iTunes, it says that there is about 350 MB of "Documents and Data" on my phone that I have no idea where it is coming from. Do you think it is possible that the videos are still saved on my phone but my phone doesn't recognize it as videos and can't assign it to the icons in the Camera Roll? Do you have any tips how I can access the videos in case they are still saved somewhere on my iPhone?
    Thank you very much in advance for your help and tips!

    I have the same problem too!! I was deleting some photos and videos in my phone when the next picture I swiped to was a blank picture with JPG in the middle~ after I closed camera roll and reopened it my photos and videos after that picture are all gone~ and I'm left with 3 videos I took about 30 mins before with 0:00 and when I tried to play them the message popped up saying "requested URL cannot be found on this server" T^T does anyone have a solution to this problem?

  • Recording Videos

    I am having trouble recording video from really anything (tv, dvd player, vcr, etc). I have a friend who is using a MAC and a box called a Miglia Director's cut (http://www.miglia.com/products/video/director2/)
    all he does is hook up the director's cut to the tv w/regular composite cables and it hooks to the MAC with a firewire. So then to record something off the tv all he does is open quicktime player, go to file and click record movie. Now i have tried to do the same exact thing, only im using windows and the option is not available to select "new movie recording" only "new audio"? i have found this little bit on the Support section of apple.com (http://helpqt.apple.com/qthelpwr3/english/QuickTimeHelp/pgs2/qtFmSet3.htm)
    and it does say a MAC can record video but doesnt say anything about a windows machine. is there something im doing wrong or can you not use quicktime 7 pro to record movies on a windows machine??? Please help

    From
    http://www.apple.com/quicktime/pro/faq.html
    QuickTime 7 Pro for Windows currently supports audio capture only.
    iFelix

  • Recording Video to SD - 4GB Limit?

    I've encountered a bug with the video camera on the Z10.  I'm using what I assume is the latest version of the software that was pushed out recently (10.2.1.2102).
    I was recording video and after half an hour or so I received an error message stating there was an error saving the video.  When I checked on the SD card I can see the file with the correct date/time and file extension however the file doesn't open.  I notice the file is 4GB which is the file size limit on FAT32, so it appears that the camera doesn't automatically stop recroding and write the mp4 info, or start a new file, when it nears this limit on SD cards.
    1 - can this be fixed?
    2- is there any way of recovering the video?  The footage I have isn't really replacable.  I've tried VLC and mp4box with no luck.  
    Thanks!

    Welcome to the forums.
    VLC would have been my first suggestion, there are a number of other MP4 web sites and apps out there I suggest you keep trying.
    http://mp4repair.org/
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

  • I'm using ezcap.tv 116 ezgamer capture card to record my PS3, this is on a windows laptop, Im then moving the recorded videos in mpg format over to my MacBook Pro to use IMovie to edit them to upload to youtube but it won't let me import them.

    I'm using ezcap.tv 116 ezgamer capture card to record my PS3, this is on a windows laptop, Im then moving the recorded videos in mpg format over to my MacBook Pro to use IMovie to edit them so i can upload them to youtube but it won't let me import them, even after changeing them to MP4 format, it just comes up with the message: "No Importable Files None of the selected files or folders can be imported. Change the selection and try again."
    Ive even tried opening in itunes and copying from thier but they wont open in Itunes, no message or anything they simple just dont open. its strange because it does open in quicktime player.
    please if anyone has any ideas that can help me please let me know XD thanks.

    First problem: You're fine. The hotter it gets, the more the fans spin up. The computer is designed so that at max load, at max fan speed, it won't overheat (unless it's obstructed by something, e.g. sitting on your bed swallowed by a comforter). It's not the best thing to keep it that toasty for days at a time, but a couple hours at a time shouldn't be a problem.
    Second problem: If something in the trash won't delete, just use Secure Empty Trash and it should be fine. Since .torrent files are quite small, it should only take a couple seconds.

  • I am after using my ipad for 2-3 hours to record video, it will be while traveling so I could do with being able to set it up so it just records while I drive. Is this possible?

    Hello as stated I wondered if there is an app that I could use to record a journey that I will make, it will take aprox 3 hours I can charge my ipad up as I go so battery life is not a problem and I have quite a bit of room on my I pad. Is it possible?

    Sure why not. The camera app will record videos and there are car chargers for the iPad that you can purchase. You will need some sort of stand to place the iPad into, but those are available as well. You might need to adapt the out of the box car stands to face in the direction that you want, but there are lots of them out there.
    You should set the iPad to not go to sleep in Settings>General>Auto Lock>Never until you are done recording.
    Car chargers
    https://www.google.com/search?q=car%20charger%20for%20iPad%202
    Car Stands
    https://www.google.com/search?q=iPad%20car%20stands%20
    Sorry, I just realized that you have a charger.
    Message was edited by: Demo

  • I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    A third-party app probably cannot obtain a stream from another app. To the best of my knowledge, such a capability is not provided in the software development kit, apps being "sandboxed" from each other and so allowed to communicate only in very specific and limited ways.
    I'm not completely sure what you mean by "limitations on video capture". An iPhone, to the best of my knowledge, can natively record video only through it's built-in camera, and audio while doing video recording only through the built-in microphone or mic/headphone jack. There might be a video recording app that would allow audio input from an external device connected to the dock connector, but I'm not sure.
    Regards.

  • Start recording video at a set time of day and off at a set time of day, and or can start rec video when motion detected, till no motion detected for a set period

    is there an app for iphone which can be set to start recording video at a set time of day and off at a set time of day, and or can start rec video when motion detected, till no motion detected for a set period. basically someone is vandalising my vehicle and i really really want to catch the mongrel
    thanks for any suggestions

    Nope.

  • Iphone 3gs will no longer play my recorded video's

    i downloaded just dance autodance app onto my iphone and everything was fine and normal now all of a sudden my recorded video's no longer play but still play the sound to it the just dance app works fine on my boyfriends iphone, i have tried removing it and re-installing it but its still the same, can anyone help please x

    These are the symptoms of a loose or detached Flex Cable # 6 at the top of the Logic Board.

  • Error message when trying to record video?

    PowerMacG5
    OS 10.5.6
    QT 7.5.5
    iSight camera
    When I try to record a video using QT Pro I get the following error message:
    Operation Could not be completed due to an unknown error.
    (error Domain= NSOSStatusError Domain code= 1852797029
    If I try to use iChat, iSight is working fine. After getting the error message in QTPro then iSight does not work anymore even in iChat....
    I have to unplug iSight then plug it back in to get iChat video working again.
    I deleted QT pref, no luck.
    Any suggestions?
    Thanks
    Fred

    after several hours of searching for and testing of lots of different video capture applications, i have finally found one. There were several that worked. But the one that was the best of the ones i tested was *EvoCam (http://www.evological.com/evocam.html)* I haven't used it for long but from what i have seen so far it works sweet. The one main thing i wanted it to do was create video recordings. that it does. it also has several cool options and effects you can apply to the video.
    hope this helps.
    i still have not been able to get QT to record video with the iSight, or find any explanation from anywhere or anyone as to why. here is a list of a few of the other software apps i tried:
    camtwist - (Really cool effects that you can apply to your cam for chats ect.)
    BTVPro
    capture magic
    dreamn capture
    gawker
    ishowU hd
    periscope
    UseeMe
    webcam tweaker
    Rons video grabber

  • I can no longer record video on  my iPad since the upgrade!

    I went to record something on video this morning, and tapped "video" on my screen, and it did nothing.  Can't seem to activate the record video button since the last upgrade of 07!

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Record Video in iChat no longer available

    Trying to help my Dad with this problem.
    He owns a MacBook Air, and recently upgraded to Snow Leopard (now on 10.6.3). Before, in Leopard, he was able to record iChat sessions in "Video-> Record Chat" with the same computer. For some reason, now that option is grayed out.
    Under "Video -> Connection Doctor -> Capabilities", it lists "Insufficient CPU" next to "Record Video Chat".
    I had him delete all of his iChat preferences in his Home->Library->Preferences folder (which subsequently fixed the problem of me not being able to share his screen). However, it did not fix the record video problem.
    Did Apple take out this feature for certain processors with the advent of Snow Leopard? How can he get it back short of taking 10.6 off of his system? Seems very strange to me that this is not working when it used to.

    Answered in iChat 3
    9:09 PM Wednesday; April 21, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Maybe you are looking for

  • Java 1.6 Update 39 - Mac OS X 10.8.2?

    Hello there, I updated my iMac from OS X 10.6.8 to 10.8.2 a month ago. Recently, I noticed that my Java version (1.6.37) on my computer is outdated, as 1.6.39 has now been released. My question is: how do I update my Java from 1.6.37 to 1.6.39 on OS

  • P45D3 Platinum and DDR31600 - PROBLEM

    Hi all ...  I am new in this forum and I am sorry if you have already discussed my problem but I will ask you for help: P45D3 Platinum - mainboard My RAM modules are RAM2GDDR31600CRXMS3   CORSAIR TW3X2G1600C9DHX TEST SPECS ? Each module pair is teste

  • Troubles with ALV set_table_for_first_display

    Hello people, I am facing an interesting problem. I want do display data from an internal table on an ALV grid. So far, so good, When I am trying do do so again with different recordsets, the ALV displays the data from the first attemp again. e.g.: d

  • No.of editors in ABAP/4

    Tottally how many editors are in SAP ABAP/4?

  • Files manually added to the TC when Time Machine fills the disk?

    I've ordered a Time Capsule & have tried to find the answer to this question, but can't get a definative answer. On a 1TB drive say I add 200GB of files manually (used as a NAS) alongside the Time Machine backup. When the Time Machine backups reach 8