Kdenlive not rendering with title clip

After doing a system upgrade kdelive will no longer render my project, which rendered fine before the upgrade. After I click render, it either gets stuck in "waiting" or it gives an error saying that rendering crashed. If I turn off the title clip, rendering proceeds as normal. Looking around I saw some people with similar problems fixing it by running kdenlive as root, but in my case that didn't solve anything. Anyone have any ideas?
The kdenlive profile I'm using is HD 1080p 59.94fps and I'm trying to render an H.264 video (although trying other formats encounters the same problem).
Some relevant package info:
[root@labby ~]# pacman -Qs kdenlive
local/kdenlive 0.9.6-2
A non-linear video editor for Linux
[root@labby ~]#
[root@labby ~]# pacman -Qs ffmpeg
local/ffmpeg 1:2.1.1-1
Complete and free Internet live audio and video broadcasting solution
local/gstreamer0.10-ffmpeg 0.10.13-1 (gstreamer0.10-plugins)
Gstreamer FFMpeg Plugin
[root@labby ~]#
[root@labby ~]# pacman -Qs mlt
local/mlt 0.9.0-5
An open source multimedia framework

Have you upgraded the system?
I had this same problem until yesterday, only kdenlive did not render at all, with or without title clip. Googling about it, I think it was some kind of conflict with mlt and opencv. Opening kdenlive as root did not work for me. I initially downgraded to the previous version of mlt (0.9.0.1 if I remember cforrectly); with that I could render, but only without title clips present. Solution came with last update of opencv (and re-upgrade of mlt).
Also, while I was looking up this problem, I read about a similar bug being related to the sound, and installed ladspa (just in case all the previous doesn't completely solve your problem).
Last edited by Daerun (2013-07-14 13:52:30)

Similar Messages

  • Kdenlive fail rendering if title clips or images are in the project

    Hi.
    Thats what happen if I try to render a project with title clips or images inserted, whatever is the output that I choose. If I hide title clips and images, the project renders
    I get a popup that says
    Rendering of /home/pathtooutputfile aborted, resulting video will probably be corrupted
    And what I see in the error log is a little different with the output I chose:
    If I choose mp4 I get
    [libmp3lame @ 0xb0510e20]
    Channel layout not specified
    [mp4 @ 0xb050ae40]
    Encoder did not produce proper pts, making some up.
    If mpeg2
    Channel layout not specified
    [mpeg @ 0xb050ae40]
    VBV buffer size not set, muxing may fail
    If vob
    Channel layout not specified
    [ac3_fixed @ 0xb0510e60]
    No channel layout specified. The encoder will guess the layout, but it might be incorrect.
    If mov
    [mov @ 0xb050ae40]
    Encoder did not produce proper pts, making some up.
    I'm going crazy (a month ago everything worked fine).
    Any suggestions?
    I search and found this http://www.kdenlive.org/forum/rendering … lip?page=2 but no way (and I don't know if it is my issue)
    (my english is not so good... sorry)
    Thanksssssss

    Have you upgraded the system?
    I had this same problem until yesterday, only kdenlive did not render at all, with or without title clip. Googling about it, I think it was some kind of conflict with mlt and opencv. Opening kdenlive as root did not work for me. I initially downgraded to the previous version of mlt (0.9.0.1 if I remember cforrectly); with that I could render, but only without title clips present. Solution came with last update of opencv (and re-upgrade of mlt).
    Also, while I was looking up this problem, I read about a similar bug being related to the sound, and installed ladspa (just in case all the previous doesn't completely solve your problem).
    Last edited by Daerun (2013-07-14 13:52:30)

  • Audio data not loading with certain clips. Premiere Pro CC 2014, using .mts files

    When I open a project, sometimes a clip will not load its audio data. In the photo I've attached, you can see the video clip on the right has the waveforms showing up, but not for the clip on the left. Rendering does nothing, I've tried clearing Premiere's cache, and I've signed out and back into Creative Cloud as I saw in another forum post with no success...any suggestions?

    Right clicking, and selecting "make offline" then re-linking the media seems to work. Thanks! Just weird how this happens sporadically with different clips in different projects when I open them.

  • Affect not rendered with AVCHD

    I've had CS4 for a few days now. Running into problems. I have 1 clip in the timeline (AVCHD,  MTS file). I added one effect (Auto Levels). When rendered using AME to H.264 the effect did not render with it. It will sort of flash once every 10 frames with the Auto Levels effect. I tried the same procedure with a SD avi file and it rendered Auto Levels fine. I am completely updated.

    I can't tell you why it's not working, but I can tell you that it doesn't really matter as you're better off avoiding the use of any type of 'auto' effects anyway.  Do what you need manually and it should work.

  • Model not rendering with no UI in Applet

    I am currently working on an implementation of AutoVue that calls for the applet to have no UI and to just display the model.
    I have found that when I remove the UI form the applet the model does not render or display until I do something to the page like scroll the browser window or re size the browser window.
    I have found that if I leave 'TOOLBAR NORTH IDS_VIEWMODE_MAIN' in the UI with at least one of the 'BUTTONPOPUP 3DMODE' options e.g. SMActionRotate then the model renders properly on page load without having to do any of the quirky things mentioned above. Has anybody else had this issue or know of any work arounds?

    Not able to reproduce by removing north toolbar (using a custom gui file).
    Even removing all the UI works fine, e.g.:
    BEGIN UI SMVIEW
    END
    Which JDK are you using?
    Try to use light weight component using the following applet parameter:
    +<PARAM NAME="HEAVYWEIGHT" VALUE="false">+
    See related link: http://www.oracle.com/technetwork/articles/java/mixing-components-433992.html
    Edited by: AutoVue AU on Feb 15, 2013 7:19 AM

  • AddChild not working with library clip (attachMovie AS2 migration)

    Hello,    I'm having a problem adding a library clip to my stage
    I can do no problem if I have a testFLV.fla that has a library clip called test_clip with the linkage set to: com.attach_clips.Clip.
    import com.app.views.mediaDisplay;
    import com.attach_clips.Clip;
    public class FLVTest extends Sprite
        private var _mediaDisplay:mediaDisplay;
        public function FLVTest()
            this._mediaDisplay = new mediaDisplay(null);
            var clip_1_mc:Clip=new Clip();
            var clip_1_mc:Clip=new Clip();
            this.addChild(clip_1_mc);
            clip_1_mc.x=100;
    If I use the same concept in my mediaDisplay class, the clip isn't added to the stage.   Obviously it's got to be a scope issue since 'this' in the first example
    represents the .fla itself but in mediaDisplay this doesn't have a stage object.
    package com.app.views
        import flash.display.Sprite;
        import com.attach_clips.Clip;
        public class mediaDisplay extends Sprite
            public function mediaDisplay(attachControls:Sprite)
                var clip_1_mc:Clip=new Clip();
                this.addChild(clip_1_mc);
                clip_1_mc.x=100;
    Any ideas how I could 'attach' test_clip to the stage from mediaDisplay?
    Thanks,
    Clem c

    I've done away with all references to Clip.    Now, everything references test_clip.    Also, FLVTest contains the actual test_clip library symbol.
    Class FLVTest instiantates and instance of mediaDisplay which, for now-in the constructor, attempts to add an instance of test_clip to the stage. 
    As far as adding FLVTest and mediaDisplay to the display list - I'm not sure that this is relevant to the situation?
    at the moment, the current code looks like this:
    FLVTest.fla:
    public class FLVTest extends Sprite
        private var _mediaDisplay:mediaDisplay;
        public function FLVTest()
            this._mediaDisplay = new mediaDisplay();
    package com.app.views
        import flash.display.Sprite;
        import com.attach_clips.test_clip;
        public class mediaDisplay extends Sprite
              public function mediaDisplay()
                   var clip_1_mc:MovieClip=new test_clip();
                   this.addChild(clip_1_mc);
                   clip_1_mc.x=100;
                   clip_1_mc.y=100;
    And the linkage in test_clip:
    Class:   test_clip
    Base Class:   flash.display.MovieClip
    Thanks for all your help so far by the way!

  • Final_cut_pro-"Error: out of memory" when rendering with hidef clips

    I keep getting this notice when rendering "error: out of memory." Both my external drive and internal drive have plenty of memory; 1.8TB and 101GB respectively. It makes no difference if I am rendering at full resolution or draft. I solved it for a while by clearing out some memory on my internal harddrive,
    but now it is back. What is going on. This didn't happen when I was working with regular definition clips but now I am working with high def. What to do?

    Drives don't have 'memory' in this context, they are storage containers.
    Check my answer to your other thread and give us more info about your rig...Hardware/Software (models/versions), how everything's connected, exact specifications of the media you're working with and sequence settings.
    K

  • Shake not rendering with Snow Leopard?

    I had Tiger and Shake operated flawlessly. I recently upgraded to Snow Leopard, because I use Maya 2010, and it will not run on Tiger. After I upgraded to Snow Leopard, Shake does not render. The rendered files cannot be opened in any program! (Photoshop, After Effects, Preview, etc.) I know that Apple announced that they would no longer give updates on Shake since they are no longer making it, so I am wondering if it is a OS compatibility issue from Shake 4.1 to Snow Leopard? I also use Final Cut Pro, and have not seen any issues with rendering from that, so I am confused! Anybody that has any insight would be in my debt forever! Please Help!

    masterslacker wrote:
    my version still tells me v4.10.0606
    Yes, that's what 4.1.1 displays in the Shake window.
    If you look at the Shake application icon in Finder, you should see the accurate version number:
    http://support.apple.com/kb/TS2423
    The link I mentioned earlier includes a detailed discussion of updating Shake in Snow Leopard:
    stuckfootage wrote:
    Check out this thread:
    http://discussions.apple.com/thread.jspa?threadID=2263581&tstart=0

  • Start movie with title clips while keeping background sound?

    I have 4 to 5 title slides I want to show before the video kicks in. I want to start the audio from the video while the title slides are playing, and then when the title slides are done playing have my kids voices continue right on with the video.
    Can this be done?
    Thanks,
    Phil

    OK Cutaway enables you to drag and drop video or slides or photos onto another video, etc.
    You, on the other hand are just adding a title.
    I would suggest that you make your title in Keynote, Powerpoint, or similar tool and then save it as a JPEG file. You can drag and drop that on the video clip.
    Another thing you might try, but I haven't tried this myself, would be to make a still frame out of the title you created on a background in iMovie. Try moving your cursor to the title, then right-click/add freeze frame. Right-click on the freeze frame and select Reveal in Finder. You may see a JPG file that you can make a copy of. Then drag this copy and drop it on your video.

  • Red Giant Denoiser II not working with certain clips

    HI all,
    I have a 25 minute wedding video that I have been unsuccessfully trying to export and sign off on nfor the last week and the problem seems to lie with Denoiser II.  There were some clips that were corrupted by me using Denoiser on them so I had to take the effect off.  However I am also having a problem in that the denoiser effects seems to 'flicker' during clips - ie it works for a second, then stops so noise appears, then works again for a second, then stops etc etc.  The footage was shot on a dslr, 24fps.  I shot a short film with the same clips and used denoiser a few weeks previously with no problems.  The only thing that differs is the amount of other effects I am using with the footage - Colorista II, Mojo and Magic Bullet Looks.  Could the problem be that I have too many effects running?
    I can't view my footage in Premiere as my computer can't play it due to the effects I have on it so can't comment on whether the problem is happening in playback and export, or just when i export
    I have tried exporting in h.264, mpeg etc. I have also tried exporting through Encoder rather than Premiere, again with no difference and am getting so frustrated. 
    Im on Premiere Pro cc and Windows 8
    Any advice would be much appreciated
    Thanks!
    Tony

    Hi Tony,
    Make sure you have installed the most recent version of that plug-in. You might also want to contact Red Giant Support: http://www.redgiant.com/support/
    Thanks,
    Kevin

  • AE CS5 - Duplicated comp not rendering with custom camera

    Hello
      I hope this is a simple fix.
      I have an AE comp that uses a custom camera and many 3D layers.
      I duplicated the comp, and the new comp will not render using the custom camera. It uses a default camera which does not have my camrea's attributes, and it looks all wonky.
      Is there a place where I can force the render to use a specific camera? I didn't see an option in the render settings or output module.
    Thanks
    ----------S

    In that screenshot, the text is too tiny for me to make anything out.
    I can tell that you're previewing in the Composition panel with your shotCam. But is that camera layer the active camera in the composition?
    In case you're not clear on what the active camera is, here's an excerpt from After Effects Help:
    "You can choose to view a composition through the active camera or through a named custom camera. The active camera is the topmost camera in the Timeline panel at the current time for which the Video switch is selected. The active camera view is the point of view used for creating final output and nesting compositions."

  • WebDynpro Mobile - Table not rendered with PIE Client

    Hello experts,
    I want to create a WebDynpro Mobile application.
    In this application I have a table which is bound to three Context Attributes with the type String.
    In a standard browser, that table is displayed correctly. But when I am using the PIE Client, I just get a strange table-like "thing" with one column and row, without a header title and a radiobutton in the one table cell.
    Does anybody have an idea what is going wrong here?
    Thanks in advance
    Felix

    Refer this thread also. Similar question was earlier raised by me also..
    Mobile WebDynpro Sample App Problem
    Solution is at the last message of this thread.
    Regards,
    Gopal

  • Audio Not Importing With Video Clip

    My issue seems to be the same as another on this board, but it involves an MPEG file. In QuickTime Player the clip plays video and audio fine. But when I import the clip into iMovieHD 6.0.3, the audio doesn't play. Any suggestions?

    iMovie is a video edit app meant to work with firewire connected miniDV/D8 camcorders
    you try to teach the old dog new tricks..
    Streamclip (free)
    converts mpeg1 into something editable..
    if you're tying to edit mpeg2, you need addtional Apple mpeg2 plugin (20$)
    choose in Streamclip dv/dv-stream as export option...
    due to the nature of mpegs, you will realize a (dramatic) loss of pic quality...

  • Narration does not stay with video clips when editing

    I have been working on a large video project in PE7. I just finished adding approximately 100 narrations at various points in various clips. I then inserted a video clip that was missing and all the narrations seems to have shifted and are no longer in sync with the video clips. Any suggestions before and go to the timeline and move each clip?

    If you inserted a clip, the timeline is designed to "ripple" or move over to allow for the clip.
    If you don't want the timeline to ripple as you add new clips, hold down the Ctrl key as you add your clips.

  • ThemeBasedFoi Not rendering with advanced style

    Hello,
    I have defined an advanced variable ranged bucket as:
    <?xml version="1.0" ?>
    <AdvancedStyle>
         <BucketStyle>
            <Buckets>
                <RangedBucket seq="0" label="Muito Pouco" low="0.0" high="19915.0" style="C.RED5" label_style="T.RIO"/>
                <RangedBucket seq="1" label="Pouco" low="19915.0" high="218128.12" style="C.RED4" label_style="T.RIO"/>
                <RangedBucket seq="2" label="Normal" low="218128.12" high="1992239.79" style="C.RED3" label_style="T.RIO"/>
                <RangedBucket seq="3" label="Muito" low="1992239.79" high="1.91553676E7" style="C.RED2" label_style="T.RIO"/>
                <RangedBucket seq="4" label="Elevado" low="1.91553676E7" high="1.1386E14" style="C.RED1" label_style="T.RIO"/>
        </Buckets>
       </BucketStyle>
    </AdvancedStyle>And the following theme, that makes use of the above style.
    <?xml version="1.0" standalone="yes"?>
    <styling_rules>
        <rule column="agg">
            <features style="V.VR_RED5">SELECT pk_instalacao, agg, geom
        FROM TABLE_I_GF_SQE </features>
      </rule>
    </styling_rules>When i render it in Oracle Maps all geometric elements are displayed in white color, not the color i specified in the advanced style.
    Any thoughts ...

    Hi J. Sharma, thank you for your response, sorry for my delay.
    This was just a test to see if i could specify, queries in the theme definition.
    I'm building a Spatial OLAP Server, and i need to define the themes dynamically, based on the spatial attributes, semantic attributes, and aggregated measures specified by the Spatial OLAP client.
    At the time i wrote my first post, i was realizing that mapviewer does not handle well the SDO_AGGR_UNION, so i decided to create a table with the result of a more complex query and render it with an advanced style.
    But the style failed, nevertheless i found a solution for the problem, as soon as i have some time i will post my results in the forum.

Maybe you are looking for

  • Is there a remote app that will let me open and close programs on my iMac

    Hi There, I know that I can use the Apple Inc "Remote App" to control my iTunes on my iMac - and I really like it for when I am not right at my computer, but I have to have iTunes open on my iMac before I can use it which is a bit of a pain to have t

  • Kernel Panic w/ 10.4.8

    After installing 10.4.8, I get a gray screen w/ restart message while booting. I am only able to boot in "safe mode" (i.e. holding down the shift key while booting). The local dealer says there is a conflict between 10.4.8 and some other extension. H

  • MobileMe gallery movie in iweb too small

    I posted my videoin my MobileMe gallery. I posted two sizes, iphone size and a HD size. I then use the MobileMe gallery widget to use that video in my website. I want the large size to show up in my website. Though it only allows me to resize to the

  • JSTL WLS 7 to WLS 8.1 Upgrade Issues

    We have a web app that currently runs on WLS 7. We have been asked to upgrade the app to WLS 8.1 recently. Most of the screen have ported fine, but there are a couple of screens that seem to be throwing fits. It could be a JDK/JRE issue, but here is

  • New tool for opening Mac mini

    I bought two of these fish tank scrapers for my Mac Mini. They are just 0.1mm thick and very strong. These are much thinner than any putty knife from the hardware store. Very easy to insert into the gap between the aluminum case and plastic base, wit