Batch Convert 1080/24p to 720/24p... AND Conform to Real-Time

Hi there! A little bit of a conundrum, but I'm sure the answer is out there.
I have about 4 hours of content that was shot on the Sony FS700. The clips were shot at varying frame rates, but the FS700 automatically conforms high-speed footage at 1080/24p. We've already imported to ProRes 422, but I also have the source media (as shot) still available.
I need to covert everything to 720p/24, and also conform to real-time. There's obviously a VERY long story as to why I'd need to "throw out" frames, but that's beside the point. We've all dealt with silly clients...
Rest assured, our group will edit with the original media (and just speed up when we need real-time.) Any suggestions? I'm on a Mac with Adobe CS6 (new convert!) and Final Cut Studio 3. I also own Telestream Episode. THANKS!

Thanks very much for your help. Yes, it was the faster frame rate I was thinking that I thought could help for the fast action sequences. I was concerned about the jello problem that might be more noticeable at a lower frame rate in fast action scenes. If I'm not mistaken, I believe the GH1 doesn't shoot interlaced, only 1080p and 720p in its movie modes.
Actually, sorry I made a mistake in my previous post. In 720, the Gh1 shoots at 60fps, not 30.
My plan was for the timeline sequence to be 1080 and just drop the 720/60p scenes into the 1080/24p timeline. On the GH1, the advantage of shooting in the 720/60p mode is the great slow motion shots you get when slowed down to 24p. Otherwise, yes, the majority would be 24p.

Similar Messages

  • Is it possible to set up my iPad as a video camera and broadcast it real time to a TV via apple TV?

    Is it possible to sey up my iPad as a video camera and broadcast it real time to a TV via Apple TV?

    Use airplay to send what is on the iPad to your tv.
    Since ipad2, you can display exactly what is on the ipad screento a tv via an adaper or via airplay through an apple TV.
    http://support.apple.com/kb/ht5209
    http://support.apple.com/kb/ht4437
    General overview but lacks specifics.
    http://accelerateyourmarketing.com/home-video-studio/
    Video
    https://www.youtube.com/watch?v=ce5FVJi0Uxw

  • TWO VERY TOUGH SUPPORT PROBLEMS FACED AND SOLVED IN REAL TIME

    pls any body post two very tough support problems faced and solved in real time.
    my id is: [email protected]

    Hi Priya.,
    For example client wants his customer legacy number in XD01 master data which is not there in Standard SAP.we can satisfy the requirement with USER EXIT
    2) If the client wants customer Phone number in the sales order we can use user exit to satify the requirement
    These are not provided in Standard SAP & we should work out on alternative way
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • How to calculate rms voltage, rms current and frequency from real time data?

    Hello,
    I need to calculate the real time rms voltage, rms current and frequency of the received voltage and current graphs using visa read. Actually am trying to monitor the voltage and current parameters of AC load, in this case, am using a set of 4 light bulbs at the moment. Expected frequency is 50 Hz, and rms voltage close to 240v AC, current about 1A. 
    Attached is the vi picture of what I have been able to achieve so far, courtesy of labview forums. But I need to finally finish this vi by calculating the Vrms, Irms and frequecy. The front panel shows the voltage (Chart V) and current (Chart I) after scaling. Chart VI represents ADC value 0 ~ 1023 of received data. Aray V & I show the binary bits received up to 10 bits of useful data from ADC. Each sine wave from ADC is sampled at 25 samples for the ADC conversion, and sampling frequency of 1.28kH.
    I have tried using the RMS vi, but seems I don't know how to configure it correctly to get desired results. Also when I make changes like switching of one of the bulbs so that their is current change, I need to refresh the SERIAL port first before changes show up on the VI. Any ideas on how to improve on this are highly appreciated.
    Otherwise, I would appreciate if somebody helps me MODIFY my VI to read the rms values and frequency from received data. This is the last piece of my project, I do appreciate all the help rendered. Am currently using labview labview 2014, student version!
    Gavin.
    Attachments:
    Test_revised1.vi ‏39 KB
    Test_frontpanel.png ‏196 KB
    Test_blockdiagram.png ‏187 KB

    hello,
    note that peak voltage (Vpeak) is (240 * 1.414) = 399 V and peak current about 1.414 if intended rms current is 1A.
    Gavin.

  • Jerky and "Not In Real Time"

    Why is my footage in AF 5.5 jerky and why do I get a message in red saying"Not in Real Time"?
    Any ideas please?

    You're not giving us any information to work with to help you. We need to know a lot more to help you. Please provide answers to the questions listed here: "FAQ: What information should I provide when asking a question on this forum?"
    I'm going to take a guess, and I'm guessing that you are previewing by pressing the space bar. Don't do that. Use RAM preview to get real-time playback of previews.
    Start here to learn After Effects: http://adobe.ly/bjBT3P

  • Continuous data acquisition and analysis in real time

    Hi all,
    This is a VI for the continous acquisition of an ECG signal. As far as I understand the DAQmx Analog read VI needs to be placed inside a while loop so it can acquire the data continously, I need to perform filtering and analysis of the waveform in real time. The way I set up the block diagram means that the data stays int the while loop, and as far as I know the data will be transfered out through the data tunnels once the loop finishes executing, clearly this is not real time data processing. 
    The only way I can think of fixing this problem is by placing another while loop that covers the filtering the stage VIs and using some sort of shift registeing to pass the data to the second loop. My questions is whether or not this would introduce some sort of delay, and wether or not this would be considered to be real time processing. Would it be better to place all the VIs (aquicition and filtering) inside one while loop? or is this bad programming practice. Other functions that I need to perform is to save the data i na file but only when the user wants to do so. 
    Any advice would be appriciated. 
    Solved!
    Go to Solution.

    You have two options:
    A.  As you mentioned, you can place code inside your current while loop to do the processing.  If you are clever, you won't need to place another while loop inside your existing one (nested loops).  But that totally depends on the type of processing you are doing.
    B.  Create a second parallel loop to do the processing.  This would decouple the processes to ensure that the processing does not hinder your acquisition.  See here for more info.
    Your choice really depends on the processing that you plan to perform.  If it is processor-intensive, it might introduce delays as you mentioned.  
    I would reccomend you first try to place everything in the first loop, and see if your DAQ buffer overflows (you can monitor the buffer backlog while its running).  If so, then you should decouple the processes into separate loops.
    Regarding whether or not "this would be considered to be real time processing" is a loaded question.  Most people on these forums will say that your system will NEVER be real-time because you are using a desktop PC to perform the processing (note:  I am assuming this is code running on a laptop or desktop?).  It is not a deterministic system and your data is already "old" by the time it exits your DAQ buffer.  But the answer to your question really depends on how you define "real-time processing".  Many lay-people will define it as the processing of "live data" ... but what is "live data"?

  • Directing fsck output to syslog and screen in real-time

    Hello,
    I have the following under Debian 6. The procedure should check and automatically repair the file system and write the result to the user's screen and also to syslog.
    #!/bin/bash
    output=`fsck -y /dev/disk/by-label/oracle-xe; retval=$?`
    logger -is "$output"The procedure seems to work, but I don't see the output until the fsck command has completed. Is there a possibility to write the output to syslog while presenting the fsck output in real-time?
    Kind regards.
    Edited by: Dude on Jan 30, 2012 6:44 PM

    I make some progress:
    outfile=/tmp/`date +%N`
    retfile=/tmp/`date +%N`
    (fsck -y /dev/disk/by-label/oracle-xee; echo $? > $retfile) | tee $outfile
    logger -i < $outfile
    retval=`cat $retfile`
    rm $outfile
    rm $retfileThe above gives me the results I was looking for
    I also tried
    logger -is "`fsck -y /dev/disk/by-label/oracle-xee`"But it the syslog output in this case is just one long line of text without any newlines
    If there is a better way, please let me know.
    Edited by: Dude on Jan 30, 2012 6:57 PM

  • Final cut and hardwear acceleration (real time Rendering )

    hi all
    used final cut pro in vedio editting i search for any solution for accelerat my rendering time ...am tierd coz its take alot time ....i search about hardwear pci card like aja and matrox but i dont sure it work..............
    i search also about tuning of the mac os itself but i dont find any things.........
    plz help me if any one know ...............

    There are no third party hardware solutions to speeding up render times. Not Matrox, or AJA. A better graphics card will make certain effects real time or render faster (the FXPlug ones only). But really, the only thing that speeds up render times are processors. So the only way to speed up render times would be to get a faster machine.
    Shane

  • Can I acquire and analyse in real time with regular Labview?

    I have to acquire samples (which vary cyclically in a roughly sinusoidal fashion) from a sensor, and check every sample to see if it is the minimum (the valley) of a cycle. If it is, and it does not fall within an expected range, I have to take a corrective action that involves rejecting the part that was just measured as well as a 30 more parts (to make sure that the defective part has been rejected). The signal from the sensor is not very noisy, but beause of the nature of the measured object, there could be local minima and maxima. To guard against that, a point is considered to be a valley only if subsequent readings deviate above that point by a certain amount. If a part is indeed defective,
    a digital out put has to issued to reject that part.
    Can all these be done using regular Labview (not RT)? I tried it out with a proto-type VI, using DAQmx vis, continously acquiring samples, but reading one sample at a time from within a loop (the VI I used is attached with this question). The result has been disappointing, since each time the loop executes there is a delay that keeps building up. Finally, even after the part feed has been turned off I can see Labview processing signals from parts that have long since gone past the measuring head.
    Another perplexing thing I found is that the time taken to execute the while loop in the vi is not consistent; it takes anything from 6 to 50ms to execute.
    I will need atleast 8-12 samples from a part to build its profile, and the feed rate is about 3000 parts per minute. I am using Labview 7.0 with an NI-6013 card in a Windows 2000 environment.
    Thanks for any suggestions / recommendations.
    Attachments:
    find_trough_2.vi ‏378 KB

    Hello,
    Thank you for your suggestions; I had already resigned myself to going for a Real Time system, your answer convinced me to commit myself to it!
    That said, your reply leads to a couple of (related) questions...
    1. Your point regarding the use of Local Variables is well taken; I have been repeatedly told at various training sessions how the necessity of updating the LVs during each loop iteration slows the computation time. However, what alternative do we have when there are several controls to which we have to write AND read data multiple times during a loop iteration, and perform different computations based on the value held by these controls? (You have seen the VI I attached with the original question). Some of these conditional
    computations further change the value of the controls. Does Labview have any other mechanism to store and manipulate the intermediate value from a computation?
    2. I did a simple experiment to determine the average loop time, and the results were surprising. I placed the entire content of the VI I used (Find the Valley in cycle.vi) in a stacked sequence structure, and wired the index counter "i" to a control to count the number of iterations the loop executes. I placed a frame before this with a tick count instruction to get the start time of the loop, and a frame after this to get the end time of the loop. Dividng the difference of these with the number of iterations, I got the average loop time to be around 1.2ms! Am I interpreting my results incorrectly?
    Thnaks once again for your response. I would really appreciate your views on the questions I have raised in this comment
    Regards
    Arun P. Madangarli

  • Can Apple tools convert 1080 (60i) HDV to 24p ProRes well?

    Folks, I have video that's HDV (1440x1080) at 60i that I need to convert to 24p. I have not been able to successfully do this transcode and have smooth result.
    Are any of the Apple tools up for this task or do I need to look elsewhere for third party tools? I've tries several variations of compressor settings to see if I can get smooth playback, but instead the results are choppy and occasionally smooth for a moment.
    Thanks.

    If you have to mix the footage, you might try adding pulldown to the 24P footage to make it run at 30. I believe Graeme's Standards converter will add pulldown - or Shake. Then you can cut the 30fps footage into a 60i timeline...
    As to dealing with HDV native timeline - maybe you should edit in a AIC timeline?
    Patrick

  • Lumia 720 freezes and most of the times vibrates o...

    Hi,
    i bought lumia 720 on 7-7-2013, after 2 days while using some apps, the screen freezes, everytime i have to do a reset. One more issue is the screen keeps moving on its own with vibration, it goes to bing page and then goes to home page, this happens continuosly, i have to hold the phone still for a while & then it stops, i called nokia cust care and then told me to submit in Bangalore Nokia care center. Apart from doing a hard reset is there any other troubleshooting, im a technical person too but unfortunately i cannot open this phone. Is there any other way to fix this issue. Im very much afraid of using heavy apps as the phones freezes......

    To maintain warranty upon your advice these are the only reset procedures available to you as a pre-cursor to returning device for repair: http://www.nokia.com/gb-en/support/faq/?action=singleTopic&topic=FA140408
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Read from text file and plot in real time

    Hello to everybody,
    I recently started using labview and so I know very few features, I apologize for any crap I'm about to write.
    My problem is as follows:
    _ A wireless node is sampling, with a known frequency, the voltage and the current of an electronic device
    _ These data are sent to a coordinator connected to the PC
    _ Each packet sent includes a single column with: Letter V followed by voltage samples, Letter I followed by current samples (all in a single column as in the attached example)
    _ The coordinator saves it in a .txt file
    I want to do a labview application that:
    _ Reads that file (continuosly update by the coordinator)
    _ Plots on two different graphs the values (over the time) of current and voltage
    Thanks for your help
    Danilo
    Attachments:
    TextData.txt ‏1 KB

    There are File IO examples that ship with LV which show you how to write to red from a file . A more fundamental question though is why have the file at all? Is it serving strictly as a data communication channel, or will it be used for something else?
    The "coordinator" that you mention, can it be accessed directly? Serial IO? TCP/IP? Telnet? ActiveX? .NET? Anything?
    If so, that would be the preferred way to handle this situation.
    Mike...
    PS: Sorry for the next bit, but I used to be a magazine editor and my grandmother was a school teacher so I am just a tiny bit anal retentive about word usage: In English "data" is a funny word in that while it is a singular form, it is (depending upon context) often understood to referring to multiple things and so can be sort of plural. Consequently, it is proper to say: "This data is sent.. " or "The data indicates...", but not, "The data are showing..". Likewise it is always incorrect to try to make it plural by saying "datas".
    PPS: The same goes for the word "code" when used as a noun. It can also be a verb, but that's a whole different rant...
    PPPS: Also be aware that many of the people who know me well would object to the "tiny bit" part...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Head office and POS integration real time scenerio

    Hello experts,
    I am looking for some realtime scenerio of head office integration with pos (3rd party). Kindly give me some guidelines on the same.
    With Regards
    Abhishek Sinha
    Idhasoft, India

    Hello,
    SAP has got standard solution called POSDM for POS Integration with backend ERP system. Please see the attached link for details [http://sapknowhow.ning.com/profiles/blog/show?id=2328205%3ABlogPost%3A381].
    Thanks,
    Venu

  • LMS 2.1 and nGenius Real-Time Monitor 1.4

    Dear NetPros,
    Is the LMS 2.1 and the nGenius Real-Time Monitor 1.4 can be installed on the same system?
    Regards,
    Steve

    Yes, but not recommended. Keeping them on separate servers will be more beneficial.

  • Is vision development module in labview 8.6. sufficient for real-time image acquisition and analysis using a webcam

    Hi, 
    I'm new to labview and trying to develop an eye-tracker using labview 8.6. It has the vision development module and i was wondering if this was sufficient for real-time image acquisition and processing or would i be needing any other software tools.
    Solved!
    Go to Solution.

    Hello, certainly it is possible and sufficient for real-time tracking!
    About eye tracking - if you need an example, you can find the code here:
    https://decibel.ni.com/content/blogs/kl3m3n/2013/10/08/real-time-face-and-eye-detection-in-labview-u...
    The code uses OpenCV functionalities along with the LabView UI (and some other functions like overlay).
    Hope this helps a bit.
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."

Maybe you are looking for

  • Purchase group Processing Time - Types,

    Hi All, I am looking into the different time taken for the purchase department to process their acitvities. I could list a few times lke 1)  PurchasING  processing time ( T code - OMDT) 2)  Pur Req to PO Conversion time (path  : SPRO-IMG-MM-PURCHASIN

  • PPCI - Problem in Creating Infotype

    Hello Expert, I want to create OM custom infotype,but in T.code - PPCI afte entering necessary entries when clicked on Create m getting follwing log .Please let me know whether i am doing any mistake : Infotype 9501        Dictionary            Struc

  • Dynamic default values in parameters

    Hello, anyone knows if it's possible to set dynamic values as default values for parameters in portal? i am specially interested in the use the date we are in to pass it to a discoverer worksheet (month or year) via single parameter form or any other

  • Got stuck ---- importing java dump while installing NW04s .....

    Hi All, I am installing NW04s. Doing EP on java stack. I got stuck in the 17th step ie..import java dump... the log file says... ERROR 2006-11-28 16:18:17 CJS-30049  Execution of JLoad tool 'C:\j2sdk1.4.2_10\bin\java.exe -classpath "C:\Program Files\

  • Photoshop Elements 10 - c++ visual runtime error

    Hello - as of this am, I cannot open any Photoshop Elements 10 documents. C++ visual runtime message comes up when I log into Adobe Elements Edit or open file from documents. Have tried suggestions on the community boards for Adobe, as well as those