FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.

FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.
Did anybody reported this? never happened to me in previous versions.
It seems to be solved when transcoding the 25p clips to 23,98p (both Canon EOS 5dMKII clips)
But *** it must work!
Thanx

FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.
Did anybody reported this? never happened to me in previous versions.
It seems to be solved when transcoding the 25p clips to 23,98p (both Canon EOS 5dMKII clips)
But *** it must work!
Thanx

Similar Messages

  • How to work with 50i and 30f/p footage at the same time - FCPX XHA1s

    Hi all,
    Brand new to iMac and FCPX... so really hoping for some help from the more experienced out there!
    I've been shooting in 50i on my XHA1s for about a year, but have faced lots of interlacing issues which I've never managed to resolve. I didn't have a particular reason for shooting 50i, other than it was the default setting and optimum in terms of image quality I suppose.
    Anyway, after much reading I've decided to switch to 30f/p as a fixed setting moving forward... so my question is, how will I work with these two types of footage in FCPX in the same projects/movies?
    Is it simply a case of importing my new 30f footage and letting FCPX do the work, or will I have to get involved in settings? Presumably what I am trying to do is a possibility in the first place?! I really hope so, as I need to still use lots of my 50i footage in projects, at least for a few months anyway...
    Any help or insights would be hugely appreciated, and thanks in advance!
    Jimmy

    You can used to Matrix3f
    This object is a rotation and translate matrix
    for example:
    private void componerTransformada(){
    Quat4f rot = new Quat4f((float) this.getRotacionSobreX(),(float) this.getRotacionSobreY(),
    (float) this.getRotacionSobreZ(),1.0f);
    Vector3f tras = new Vector3f(-4.0f,-4.0f,(-1)*this.getDistanciaDeLaCamara());
    this.setTransformacion(new Transform3D(new Matrix4f(rot, tras, 1.0f)));
    Quat4f is a matrix of ratation
    vector3f is a direction vector
    Transform3d is building with Quat4f and Vector3f.
    That is work i use this to situe the view of point.
    good locky

  • HT3574 The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    Check with your carrier or telephone service provider.  Not all carriers provide this service.

  • HT3916 My Adobe say's I have a damaged iTunes LP and when I delete it and redownload it I get the same message . How do I fix this

    My Adobe say's I have a damaged iTunes LP and when I delete it and redownload it I get the same message . I have also lost several iTunes LP's since I purchased the iCloud Match this seriously annoys me. How do I fix this.

    Hey Ancient Rocker,
    If you are having issues with your purchased LP’s in iTunes, then the best way to get those back is to check in the previous purchase section of iTunes. The following article will take care of that part.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    If they do not show up then you can report the issue to iTunes.
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    To report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase, follow these steps:
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    Regards,
    -Norm G.

  • Keymapping problem when working with emacs and openbox

    I have an apple keyboard and I had to do some remapping of the keys to make the mod-4 key the first key to the left of the space bar for when working with Emacs.  The below script worked fine when I was using the dwm window manager, but after switching to openbox I have found that instead of swapping keycodes between the option and command keys, only the command key seems to be working since the initial openbox command-space doesn't work when pressing option-space.
    One odd thing I noticed, was on the new setup when I click run `showkey` and press the option and command keys I get 56 and 125 respectively, but these keys don't work at all when inserting them into the below script instead of the 64 and 133.
    I must admit I created the script below by continually tweaking it until it worked so there could be a much better way of doing it.
    //.xmodmap
    ### capslock => ctrl
    xmodmap -e "clear Lock"
    xmodmap -e "add Control = Caps_Lock"
    ### switch alt and command
    xmodmap -e "keycode 64 = Alt_L"
    xmodmap -e "keycode 133 = Meta_L"
    ### remap of mod 4
    xmodmap -e "clear Mod4"
    xmodmap -e "add Mod4 = Super_L"
    ** Update:  The Alt key is not being swapped with the command key, but is not just a duplicate.  So no M-x can be done by both Alt-x and Command-x
    Last edited by iso (2011-02-19 19:21:01)

    java -cp "E:\Java Programmes\class" mygame.server.Server

  • UI not getting change update when working with LIST and INotifyPropertyChanged

    i was trying to know two way data binding. i have simple car class which extend INotifyPropertyChanged for notify the change to update UI. bind List object to few textboxes and notice when one textbox value change then other textbox value not updated. all
    textboxes bind to same property. so one's value change should propagate to other textboxes.
    this is my code
    public class Car : INotifyPropertyChanged
    private string _make;
    private string _model;
    private int _year;
    public event PropertyChangedEventHandler PropertyChanged;
    public Car(string make, string model, int year)
    _make = make;
    _model = model;
    _year = year;
    public string Make
    get { return _make; }
    set
    _make = value;
    this.NotifyPropertyChanged("Make");
    public string Model
    get { return _model; }
    set
    _model = value;
    this.NotifyPropertyChanged("Model");
    public int Year
    get { return _year; }
    set
    _year = value;
    this.NotifyPropertyChanged("Year");
    private void NotifyPropertyChanged(string name)
    if (PropertyChanged != null)
    PropertyChanged(this, new PropertyChangedEventArgs(name));
    This way i bind
    Car carTest;
    private void Form1_Load(object sender, EventArgs e)
    carTest = new Car("Ford", "Mustang", 1967);
    List<Car> ol = new List<Car>();
    ol.Add(carTest);
    this.textBox1.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox2.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox3.DataBindings.Add("Text", ol, "Make");
    when run the code then Ford was showing as make name but when change value in any textbox then that change is not shown in other textboxes.
    the moment i change this line List<Car> ol = new List<Car>(); to
    BindingList<Car> ol = new BindingList<Car>(); then code started to work fine.
    My Question
    1) what is the difference between List and BindingList class ?
    2) can't we use List<> for my situation instead of BindingList
    3)
    this.textBox2.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox3.DataBindings.Add("Text", ol, "Make");
    see the above code and tell me what is the advantage of using DataSourceUpdateMode.OnPropertyChanged because i have seen if we do not use this code
    DataSourceUpdateMode.OnPropertyChanged then also data change is propagated to other textbox when cursor focus change.

    I would have thought that'd work with List<t>, in fact I think there must be something wrong in your code there.  I can't spot it though.
    I recommend use of ObservableCollection rather than BindingList.
    The default on bindings is that changes are propagated from the target ( view ) to source ( vm ) when the control loses focus.
    If you want to do the equivalent to a keydown event handler in a viewmodel then onpropertychanged is the way to go.
    You want to avoid creating bindings in code unless you really really have to, it's way easier to put them in xaml.
    Even if your ui is dynamic, you can build xaml and use that to create the ui objects:
    http://social.technet.microsoft.com/wiki/contents/articles/28797.aspx
    The difference between BindingList and List is, literally, iBindingList.
    See
    https://msdn.microsoft.com/en-us/library/system.componentmodel.ibindinglist%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
    What probably isn't very obvious is that BindingList fires an event - iirc  itemchanged when properties on objects in it change.
    Maybe you did something wrong in your implementation of inotifypropertychanged.  I must admit, I can't see anything there though.
    You don't really need those magic strings since .net4.5 and you also don't need to explicitly implement inotifypropertychanged you could use:
    public event PropertyChangedEventHandler PropertyChanged;
    public void RaisePropertyChanged([CallerMemberName] String propertyName = "")
    if (PropertyChanged != null)
    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    As used in this:
    https://gallery.technet.microsoft.com/WPF-Dynamic-Fonts-ad3741ca
    If you try that sample you can have:
    public class FontDetails : INotifyPropertyChanged
    or
    public class FontDetails
    And you can see it still notifies change successfully to both windows.
    Most wpf devs will use observablecollection rather than List or bindinglist.
    Observablecollection notifies addition or removal of entries.  It can be used to notify an entry has changed, but does not detect change of property.  You would have to raise the event in code if you want to tell it an item changed.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Problem with dual currency when working with AMEX and VISA

    Hi all,
    We are in process of implementing SAP travel on demand with integration of AMEX and VISA corporate cards. Paymentric was in charge of our configuration and the information is comming to our system now.
    As per our set up, the statements are being procesed with errors, due the currency we are receiving the charges is USD instead of country home currency. Example -> Argentinian employee travel to Brazil, and paid with BRL currency. We are receiving the statements in USD instead of BRL (There is a validation in the tool which cannot process statements in other than local currency)
    I spoke with AMEX and VISA representatives, and both says that they work with dual currency model, so changing the currency in the statements is not a possibility.
    Are we missing something in the config? I was reading information and discover that other countries like China are having same issue.
    Thanks for your help,
    Hernán

    Hi Hernán,
    credit card statements usually contain two currencies:
    1.   1. Local Currency: if the Argentinian employee travels to Brazil and buys something there, the local currency would be BRL
    2.   2. Billed Currency: this is the currency in which the credit card is billed (according to the credit card setup). Each transaction is converted to the billed currency in case of foreign transactions.
    Cloud for Travel and Expenses knows for each employee exactly one home currency. An expense report is always processed with home currency.
    Up to release 1502 it is not possible to import credit card transactions if the credit card billed currency does no match the employee’s home currency (there is no restriction to the local currency).
    As of release 1505 this is possible, but it has to be activated in Business Configuration:
    Travel and Expenses -> Expense Reimbursement -> Expense Input Channels -> Group: Credit Card -> Do you want to import credit card transactions with a credit card currency that differs from the home currency of the employee?
    In addition, you must use the new posting interface "SAP ERP Financials Using IDoc (with extensibility)". If you detect settlement deviations or differences on the reconciliation or credit card account (split payment) due to the currency exchange rates in your financial system, you can correct this situation by implementing BAdIs in the ERP system.
    Hope this helps.
    Best regards,
    Ralph

  • Dreamweaver creating duplicate sites when working with Contribute and CPS

    I've set up many websites with Dreamweaver for a Contribute/CPS environment and each time I edit the Contribute admin setting and save them, Dreamweaver created a duplicate of that site. Then when I go into edit the Contribute admin settings again, it will not let me in, saying that there is already a site with that name. I then have to delete one of the duplicates which sometimes removes the connection to CPS. Has anyone else experienced this in a multi-site, multi-user environment with CPS??? See attached image to see the duplicate sites.

    I have had the same problem.
    Had Dreamweaver support on the phone yesterday, after receiving this email:
    Please try resetting the preferences for Dreamweaver. Follow the steps given below.
    /Users/Your User Name/Library/Preferences/Adobe Dreamweaver CC Prefs
    /Users/Your User Name/Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    /Users/Your User Name/Library/Application Support/Adobe/Dreamweaver CC
    /Users/Your User Name/Library/Application Support/Caches/ com.adobe.Dreamweaver.13.0
    Macintosh /Library/Preferences/ Application Support/Adobe/Dreamweaver CC Prefs (if any)
    Macintosh /Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    Note: Follow the help doc to access user library.
    If this does not help can you please send me details below to isolate the issue further.
    1)      Step by step workflow to reproduce the issue.
    2)      Is this happening with multiple files? Few sample files to test the issue at my end.
    3)      Complete System Information file of the computer having issues.
    4)      Were there any H/w or S/w changes applied on the computer having issues. Since when are you getting this issue?
    5)      Is the user on domain account or local user? Do they have admin rights?
    6)      You BC site details, including FTP address, Login credentials.
    After our telephone conversation:
    I deleted all sites.
    I have completely deleted all versions of Dreamweaver, deleted all preference files and reinstalled Dreamweaver CC.
    It's still happening, so I will be back to them tomorrow.
    Sorta glad it's not just me!!

  • Channel error when working with BlazeDS and JBoss

    I am getting this error... can someone just help me on this front
    this is the mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    import mx.events.ResizeEvent;
    public function showData(evt:ResultEvent):void{
    var data:String = evt.result as String;
    Alert.show(data);
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteSend" destination="CreateRpc"
    result="showData(event)" />
    <mx:Button id ="myclick" label="Get Me"
    click="remoteSend.getResults('Priyank')"/>
    </mx:Application>
    =====================================
    remoting-config.xml entry for createrpc
    <destination id="CreateRpc">
    <properties>
    <source>RemoteServiceHandler</source>
    <scope>application</scope>
    </properties>
    <adapter ref="java-object"/>
    </destination>
    ========================== error i get ===============
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed:
    HTTP: Status 404: url: 'http://localhost:9081/biz/messagebroker/amf'"]
    Any solutions

    Ensure the services-config.xml on the running server contains the same
    channel definition as the services-config.xml you point at when you compile
    the Flex application.
    It looks like the application is attempting to use a URL
    ('http://localhost:9081/biz/messagebroker/amf') that the server is not
    listening to (404 not found).
    Hope that helps
    Tom Jordahl

  • HT204053 My husband and I both have iPhones but we only have one iPad. We use the same apple ID because we also share the same email address. How would this work with iCloud because we don't share the same contacts?  Thanks Elainecontacts

    My husband and I both have an iPhone and we share an iPad. We also share the same email address so how would this work with iCloud because we don't share all the same contacts?
    Thanks

    An icloud account is designed to be used by one user.  That user can have all his/her devices synced with the same Apple data (email, contacts, calendars, notes, reminders, etc.) .  When two people use the same account, then problems usually occur when one user edits data that the other user doesn't want changed on their device.  You can continue sharing the same ID for the itunes account in order to share the purchased music, apps, etc.  itunes accounts and icloud accounts are different.
    It's by far better that each user has his/her own icloud account.

  • Best way to work with interlaced and progressive clips in the same timeline

    I´m shooting with Sony MC-50E camera in 1920x1080, 50i. When importing with Log & Transfer I can work with ProRes 422 files in interlaced mode. I have to mix the footage with video screencapture which is progressive (ProRes 422). The final videos are for web only so it should end up as progressive H264 videos. I´m getting good result if exporting to H264, 1024x576 with deinterlacing enabled, but exporting to full HD gives typical interlaced lines in the picture. How can I avoid this and what is the best solution for working with both interlaced and progressive clips?

    Deinterlace in Compressor using Frame Controls, Best settings. You can reconnect the deinterlaced files to your project, if you've already edited, but you may need to copy and paste the clips in your sequence to a new 25p timeline, then Remove Attributes, Basic Motion.
    When you're ready to export your sequence, use Quicktime Movie, Current Settings, Self-contained. Take that file to Compressor to transcode back to h.264.
    The Apple T.V. preset is very good.

  • Photo booth not working correctly/ sound and image wont record at the same time

    Everytime i record a video on my photobooth, the sound doesnt record at all. Either its that, or it does record but it doesnt record accordingly, so the sound is ahead of the video when i play it

    Hi Mark,
    From your example, it looks like you're implementing a JSP application? I'd strongly recommend using interMedia Java Classes for Servlet and JSPs. Using this Java library has many advantages over using the Web Agent. For example, you can write a single, integrated, pure Java application, without the need to manage a separate component, such the Web Agent, to handle the multimedia data. Another advantage over the Web Agent is better support for HTML forms, including textareas, field values greater than 255 characters, and so forth. Its also much easier to provide a better user interface, where text-based and media data can be mixed in one upload form, then validated and processed in a single step.
    The Java class library ship with the Oracle9i 9.0.1 CDs. You can download a copy for use with Oracle8i 8.1.6/8.1.7 from the interMedia software page on OTN. Alongside the software download link, on this same page, you'll also find links to the README and the online Javadoc. In addition, there's also a link to the sample application kit. There's a servlet example and a JSP example, both of which implement a simple photo album application and illustrate how to use interMedia Java Classes for Servlet and JSPs to upload, process (create thumbnails) and retrieve images stored using the interMedia ORDImage type.
    Hope this helps.
    In order to better understand the variety of ways in which our customers are using interMedia, we'd be very interested in knowing a little more about your application, the interMedia functionality that you are using, and how you are developing and deploying your application. If you are able to help us, please send a short email message with some information about your application, together with any comments you may have, to the Oracle interMedia Product Manager, Joe Mauro, at [email protected] Thank you!
    Regards,
    Simon
    null

  • I am working in Pages and am trying to have the same footer on every page ?I went into View/Layout and typed in footer text  in the space but it only appears on first page and not any subsequent pages? Thank you.

    I am working in Pages on a report and trying to have the same footer on each page. I went to View/Layout, followed instructions, but the footer text only appears on the first page and not any subsequent pages? What should I do differently please? Thank you., Elisabeth

    Help is in the Pages forum.

  • My old PC, when scrolling through bookmarks and clicking, would return to the same place when opening bookmarks again. My Mac, book marks always open at the top of the list. Can this be set like my PC?

    The PC, (Sony Vaio) if i scrolled half way through my bookmarks and clicked on one, if i returned to bookmarks it would open in the same location from where i clicked previously.
    The Mac, every time i open my bookmarks, it opens at the top of the list.
    Can this be adjusted to work like my old PC?
    Thank you.

    Please see the Back button as depicted in this snapshot...
    Thanks
    Andaleeb

  • I own a macbook pro mid-2010 - problem-updated to mountain lion and continuously crashes and reboots when working with audio and visuals (TRIED GFXcardstatus v 2.3) sometimes helps sometimes it does not, apple info ?

    I know this is a widespread problem
    I am not from the U.S.
    what solutions does apple have for us? , are there any?
    I read there's an issue with the NVIDIA card , is there anyone I can contact? I bought it in the U.S.

    If the machine is less than 3 years old, Apple will replace the motherboard under a recall program. If it's older you may get stuck with that cost. I'd make a Genius Bar appointment and take it in.

Maybe you are looking for