Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar :50

Size: px
Start display at page:

Download "Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar :50"

Transcription

1 Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar :50 Hello, This is my first time posting on the Lightworks forums and I did not think I would ever have to get to this point but I have limited options remaining. I am a fairly new Lightworks user and I've been using the program for a few months. I looked around extensively on the forums but I'm unsure if this type of problem has to be resolved I am currently unable to import a video file into the program. The file is relatively large (2.96 GB) and is just some standard game footage at fps. I've made hundreds of other projects using the exact same format of file with no issues whatsoever. When i try to import the file i get the error message: "Unable to import into the current project : check frame-rate and audio sample-rate" As i stated before the file is fps and the audio rate is the standard 48 Hz. What i am having trouble understanding is why this file is having trouble when I've used tons of other identical format files which have imported without issue. In the past I have typically just created a project and selected "auto" as my frame rate and have had no problems editing my videos. I've tried everything from playing with the different frame rates on the projects to fiddling with trans-coding. I had started to find some luck when I converted the file in VLC which was in essence a duplication which actually allowed me to import the file. However, when I playback the video file within Lightworks it is extremely slow and states that the frame rate is 24fps. I am trying to find a solution back with this original file to see what sort of options I have Any help would be greatly appreciated if you could provide it to this kind soul. Thankyou Posted by briandrys - 03 Mar :53 1 / 8

2 Welcome to the forum. So that users can see all the technical details of the video, please follow the directions in this sticky: ww w.lwks.com/index.php?option=com_kunena&func=view&catid=23&id=66072&itemi d=81 Posted by Slashbuddy24-04 Mar :38 My apologies, here is my output below (sorry about the format) General Format : MPEG-4 Format profile : Base Media / Version 2 Codec ID File size Duration Overall bit rate mode Overall bit rate : mp42 (mp42/avc1/isom) : 2.76 GiB : 46mn 45s : Variable : Kbps Encoded date : UTC :51:57 Tagged date : UTC :51:57 Video ID : 1 Format Format/Info Format profile : AVC : Advanced Video Codec : High@L4 2 / 8

3 Format settings, CABAC Format settings, ReFrames : Yes : 2 frames Format settings, GOP : M=3, N=6 Codec ID Codec ID/Info Duration Bit rate mode Bit rate Maximum bit rate Width Height : avc1 : Advanced Video Coding : 46mn 45s : Variable : Kbps : 16.4 Mbps : pixels : 720 pixels Display aspect ratio : 16:9 Frame rate mode Frame rate Minimum frame rate Maximum frame rate Color space : Variable : (30000/1001) fps : fps : fps : YUV Chroma subsampling : 4:2:0 Bit depth Scan type : 8 bits : Progressive Bits/(Pixel*Frame) : Stream size : 2.67 GiB (97%) Language : English Encoded date : UTC :51:57 Tagged date : UTC :51:57 Color range : Full 3 / 8

4 Color primaries Transfer characteristics Matrix coefficients : BT.709 : BT.709 : BT.709 Audio ID : 2 Format Format/Info Format profile : AAC : Advanced Audio Codec : LC Codec ID : 40 Duration Source duration Bit rate mode Nominal bit rate Channel(s) Channel positions Sampling rate Frame rate Compression mode : 46mn 44s : 46mn 44s : Constant : 128 Kbps : 2 channels : Front: L R : 48.0 KHz : fps (1024 spf) : Lossy Source stream size : 74.9 MiB (3%) Language : English Encoded date : UTC :51:57 Tagged date : UTC :51:57 Posted by jwrl - 04 Mar :50 4 / 8

5 The only thing that I can see there that is at all non-edit friendly is that the media is running at a variable frame rate. That said, it shouldn't be an issue because the amount of variation is extremely slight. What are the frame rate settings of your project? Unless they are 24 (universal frame rate) or 29.97/30 (the preferred rates for this media) you will get the error message that you're seeing. Posted by Slashbuddy24-04 Mar :08 I set the frame rate for the project at 30fps. Under "Video" and "Main" in the top left corner where project settings can be adjusted I have the "output format" at 720p and 30fps but I don't think that is relevant to my problem. The only thing i can really think of is a corrupted video file where my recording program (Elgato Game Capture) just simply had a malfunction. Although with that being said the video file plays perfectly fine in QuickTime player. Posted by jwrl - 04 Mar :26 Are you on Windows? If so I can provide you with a batch file that will automatically convert your media to a constant frame rate. In the process it will also correct most header data corruption. Posted by RWAV - 04 Mar :45 Probably just a lack of attention on my part - but I can't recall seeing too many mp42 codecs in reports. I'd guess most of it is mp4 version 2 but is not called that in the header?? Posted by Slashbuddy24-04 Mar :50 No, unfortunately I'm on Mac. I don't know if there's anything you would be able to do for me in that 5 / 8

6 case. I do have access to a PC though (im a university student) and so I might try my luck later with that if there's nothing that can be done. Posted by jwrl - 04 Mar :54 RWAV wrote: I can't recall seeing too many mp42 codecs in reports. I'd guess most of it is mp4 version 2 Yes, it is mp4 version 2, but the header has identified it as mp42. Given that there's also a slight VFR issue I feel that my existing batch file should correct the header as it corrects the VFR. Since it's non-destructive even if it doesn't work it won't make things worse. The other fix if the OP has QTpro would be to open it in QT and export it again as, say, MPEG2 or DVCpro. Posted by jwrl - 04 Mar :58 Slashbuddy24 wrote: No, unfortunately I'm on Mac. I don't know if there's anything you would be able to do for me in that case. We crossed over. OK, open it in Quicktime and export it as ProRes. The file will get bigger, but you'll be able to open it in Lightworks. Alternatively, open it in VLC and re-export it from there. Posted by donkpow - 04 Mar :12 6 / 8

7 ffmpeg will run on Mac, I just don't know the preferred site to get the binary. I believe jwrl's script uses ffmpeg. Personally, since you've had success so far, I'd just format the file and see how it goes. Very fast. ffmpeg -infile.mp4 -f mp4 -codec copy newname.mp4 If you would like a near intra-frame encode with H264 while enforcing a constant frame rate, you could try something like: ffmpeg -infile.mp4 -c:v libx264 -preset ultrafast -g 1 -c:a pcm_s16le -ar r outfile.mp4 The ultra fast preset will give you a GOP of between 1 and 120, which is why you need the GOP flag. Posted by Slashbuddy24-04 Mar :24 jwrl wrote: Slashbuddy24 wrote: No, unfortunately I'm on Mac. I don't know if there's anything you would be able to do for me in that case. We crossed over. OK, open it in Quicktime and export it as ProRes. The file will get bigger, but you'll be able to open it in Lightworks. This may be a dumb question but how do I export from QuickTime in ProRes format? I assume its fairly easy I just don't see that format listed Posted by jwrl - 04 Mar :30 In that case you don't have it. Just use H.264 instead. It's essentially exactly the same format as the file already uses, but the header will be rewritten. 7 / 8

8 Just don't overwrite your existing file. Posted by Slashbuddy24-04 Mar :51 I've exported the file from QuickTime player be selecting the "720p" option which is essentially what you are saying I believe. I can now import the file into Lightworks but when I do I arrive at another problem. The duration of the clip goes from 46:45 to 46:42 which causes some gradual desync with a separate commentary track that I have over top. Is this a project frame rate issue that can be easily resolved? Thanks for your help Posted by donkpow - 04 Mar :08 The duration of the clip goes from 46:45 to 46:42 which causes some gradual desync with a separate commentary track that I have over top. Likely the result of the variable frame rate, however slight. You can probably correct that with edit tools. 8 / 8

Change H.264 export settings Posted by filmoy - 10 Mar :07

Change H.264 export settings Posted by filmoy - 10 Mar :07 Change H.264 export settings Posted by filmoy - 10 Mar 2015 15:07 This might be a silly question but, as I don't know what I'm doing, any advice would be gratefully received! I am using Lightworks (free)

More information

============================================================================

============================================================================ Lightworks gets stuck analyzing - v 11.0.2 Posted by khaver - 06 Sep 2012 04:02 Version 11.0.2 When the import panel is open and Lightworks is analyzing a list of videos, it sometimes gets stuck analyzing

More information

I imported a video from my PS4, when I try to play it in light works, it lags badly. What can I do to fix it?

I imported a video from my PS4, when I try to play it in light works, it lags badly. What can I do to fix it? Imported video is laggy Posted by ProG25-23 Oct 2017 02:44 I imported a video from my PS4, when I try to play it in light works, it lags badly. What can I do to fix it? My laptop is 32 bit and the video

More information

Lightworks Import Won't Recognize my FLV Files Posted by Blue11msu - 17 Feb :41

Lightworks Import Won't Recognize my FLV Files Posted by Blue11msu - 17 Feb :41 Lightworks Import Won't Recognize my FLV Files Posted by Blue11msu - 17 Feb 2015 20:41 I am new to video editing so I do not have a good grasp on all the terms and what have you, but to begin with, I use

More information

I am new to video editing - a pro still shooter with a lot of web design work as well.

I am new to video editing - a pro still shooter with a lot of web design work as well. Import MP4 question Posted by Saskiano - 31 May 2013 16:22 I am new to video editing - a pro still shooter with a lot of web design work as well. I am trying to edit an MP4 video file. The Frame Rate is

More information

[solved] Choppy playback with some source videos and edits in lightworks 12.x Posted by maxrp - 23 Nov :46

[solved] Choppy playback with some source videos and edits in lightworks 12.x Posted by maxrp - 23 Nov :46 [solved] Choppy playback with some source videos and edits in lightworks 12.x Posted by maxrp - 23 Nov 2014 23:46 Howdy, I've been tracking the 12.x series as it's been released but have consistently run

More information

Audio out of sync even after using Handbrake Posted by misguidedghost - 02 May :50

Audio out of sync even after using Handbrake Posted by misguidedghost - 02 May :50 Audio out of sync even after using Handbrake Posted by misguidedghost - 02 May 2016 03:50 Hi, Im new to Lightworks and have been struggling with importing a video. The video goes out of sync with internal

More information

Limitations of the trial version? Posted by arpad.andrassy - 02 Jan :47

Limitations of the trial version? Posted by arpad.andrassy - 02 Jan :47 Limitations of the trial version? Posted by arpad.andrassy - 02 Jan 2014 18:47 Hi, Just played around the last few days with version 11.1.1. and after I successfully did an export(to avi), all the following

More information

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02 Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May 2018 21:02 Using trial version. Im unable to import anything. Ive tried converting to mp4/aac/mp3/mpg2(ive tried many more

More information

Can Lightworks support JVC Everio file format? Posted by davidomatic - 17 Apr :51

Can Lightworks support JVC Everio file format? Posted by davidomatic - 17 Apr :51 Can Lightworks support JVC Everio file format? Posted by davidomatic - 17 Apr 2012 00:51 Hi everyone, Im an Jvc Everio user. those cameras store video recorded on an internal HD with.tod extension. Also

More information

Game / screen capture, OBS, variable frame rate import and Lightworks - USE OBS STUDIO! Posted by jmoore2-12 Feb :25

Game / screen capture, OBS, variable frame rate import and Lightworks - USE OBS STUDIO! Posted by jmoore2-12 Feb :25 Game / screen capture, OBS, variable frame rate import and Lightworks - Posted by jmoore2-12 Feb 2016 13:25 Hello all, I have been struggling to get Lightworks editing anything produced from OBS in the

More information

.MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun :50

.MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun :50 .MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun 2018 15:50 I read a lot, but still can't find the solution, please help. From the second clip until the twelfth and last, audio

More information

Native playback H264 Video freezes on high spec pro system Posted by Julia - 03 Jul :27

Native playback H264 Video freezes on high spec pro system Posted by Julia - 03 Jul :27 Native playback H264 Video freezes on high spec pro system Posted by Julia - 03 Jul 2012 07:27 I would like to be able to view 1080p video from my gopro Hero 2 within Lightworks without transcoding. After

More information

EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep :42

EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep :42 EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep 2012 16:42 EyeFrame ConverterConvert videos for easy import in Lightworks and lag-free

More information

Report regarding digital audio analysis Basçalan Erdogan'in Yalanlarinin ve Yolsuzluklarinin Kaydi.mp4

Report regarding digital audio analysis Basçalan Erdogan'in Yalanlarinin ve Yolsuzluklarinin Kaydi.mp4 Report regarding digital audio analysis Basçalan Erdogan'in Yalanlarinin ve Yolsuzluklarinin Kaydi.mp4 February 27, 2014 From the forensic laboratory of Catalin GRIGORAS and Jeff M. SMITH Re: Digital audio

More information

I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything.

I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything. 5.1 Surround Sound Posted by Breudayael - 11 Jun 2014 03:29 I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything.

More information

.MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun :50

.MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun :50 .MTS (MPEG-TS) audio out of sync second clip Posted by Arvidovic - 12 Jun 2018 15:50 I read a lot, but still can't find the solution, please help. From the second clip until the twelfth and last, audio

More information

mid=81#15143

mid=81#15143 Posted by joehillen - 06 Aug 2012 22:10 I'm having a terrible time trying to find the Lightworks source code. I was under the impression that Lightworks was open source. Usually that means that it's possible

More information

[SOLVED] MPEG2 Import: Lightworks (Free) (Not Responding) - Size Limit? [THANKS RONNIE!] Posted by blinvisible - 04 Jun :33

[SOLVED] MPEG2 Import: Lightworks (Free) (Not Responding) - Size Limit? [THANKS RONNIE!] Posted by blinvisible - 04 Jun :33 [SOLVED] MPEG2 Import: Lightworks (Free) (Not Responding) - Size [THANKS RONNIE!] Posted by blinvisible - 04 Jun 2013 05:33 Hi, I've been using Lightworks off and on the last few months and quite enjoy

More information

Quicktime Player Error Codec For Mac Avi

Quicktime Player Error Codec For Mac Avi Quicktime Player Error Codec For Mac Avi Oct 2, 2014. I donwlaoded a movie and its.avi and i am getting an error post "converting" where it says. QuickTime player can't open. Help please After reviewing

More information

Premiere Pro Export Settings

Premiere Pro Export Settings Premiere Pro Export Settings Premiere has many export settings for your content and it can be confusing to figure out which one is right for your project. The most important thing to know before exporting

More information

Video Options. The options available for video on the web are changing constantly. At the moment your options are divided between two types:

Video Options. The options available for video on the web are changing constantly. At the moment your options are divided between two types: Reel Delivery: Design for Media Distribution Spring 2015 Class 6 - (Video Basics) Video Options The options available for video on the web are changing constantly. At the moment your options are divided

More information

How to import, edit, AVI files? Posted by curmudgeon66-02 Dec :33

How to import, edit, AVI files? Posted by curmudgeon66-02 Dec :33 How to import, edit, AVI files? Posted by curmudgeon66-02 Dec 2010 03:33 Running Windows 7 64bit on HPE-450t, Intel core i7 CPU 870, ATI Radeon HD 5570 video card. The install appears to have gone just

More information

Stomp Manual. shinywhitebox ltd

Stomp Manual. shinywhitebox ltd Stomp Manual shinywhitebox ltd Table of Contents Stomp's Manual... 3 What does Stomp do?...3 Cropping...3 Easy to use...3 Batch mode...3 Filtering...4 Overview of the UI... 5 User Interface...5 From here

More information

How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun :39

How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun :39 How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun 2011 17:39 My first video tutorial using CamStudio 2.6b. Note: make sure to select the highest playback quality (720p) to get

More information

============================================================================

============================================================================ [Solved] Title effects in v11 free? Posted by Driftwood Productions - 08 Jul 2012 15:24 I'm running LWKS v11 free edition, and am trying to figure out how to add title effects to my project, however, I

More information

Game / screen capture, OBS, variable frame rate import and Lightworks - USE OBS STUDIO! Posted by jmoore2-12 Feb :25

Game / screen capture, OBS, variable frame rate import and Lightworks - USE OBS STUDIO! Posted by jmoore2-12 Feb :25 Game / screen capture, OBS, variable frame rate import and Lightworks - Posted by jmoore2-12 Feb 2016 13:25 Hello all, I have been struggling to get Lightworks editing anything produced from OBS in the

More information

============================================================================

============================================================================ The VcRedist installer failed with error code 1603 Posted by mp26-25 Apr 2011 07:26 Hi, i have try t install it and get this error: The VcRedist installer failed with error code 1603. Features which require

More information

Tvheadend - Bug #900 ts-stream not correct

Tvheadend - Bug #900 ts-stream not correct Tvheadend - Bug #900 ts-stream not correct 2012-03-16 21:55 - none none Status: Fixed Start date: 2012-03-16 Priority: Normal Due date: Assignee: % Done: 0% Category: General Estimated time: 0.00 hour

More information

Can someone tell me if there is a reason to install x64 version over x32 or vice versa (besides the bugs I mean).

Can someone tell me if there is a reason to install x64 version over x32 or vice versa (besides the bugs I mean). 32 bit vs 64 bit version, which is better? Posted by britcom - 20 Oct 2014 06:05 Can someone tell me if there is a reason to install x64 version over x32 or vice versa (besides the bugs I mean). Posted

More information

"Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug :14

Missing log in edit viewer, all media gone Posted by prodeuser - 17 Aug :14 "Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug 2013 06:14 So, this has happened a couple of times now. I am a new Lightworks user and have been doing some testing. As I increase

More information

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve?

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve? Blackmagic Cinema Camera with Lightworks Posted by stajan - 04 Jun 2012 06:20 I am planning to shoot an Indian language Movie with Blackmagic cinema camera & Lightworks for Editing.I read an article that

More information

How To Add Songs To Ipod Without Syncing >>>CLICK HERE<<<

How To Add Songs To Ipod Without Syncing >>>CLICK HERE<<< How To Add Songs To Ipod Without Syncing Whole Library Create a playlist, adding all the songs you want to put onto your ipod, then under the How to add music from ipod to itunes without clearing itunes

More information

Ability to edit (nudge) audio on a subframe level Posted by mauricesteenbergen - 24 Aug :02

Ability to edit (nudge) audio on a subframe level Posted by mauricesteenbergen - 24 Aug :02 Ability to edit (nudge) audio on a subframe level Posted by mauricesteenbergen - 24 Aug 2011 09:02 EDITED THE SUBJECT TO BETTER REFLECT THE FEATURE REQUESTED Dear Lightworkers, I would really like to see

More information

Switch Release Notes. Switch

Switch Release Notes. Switch Switch 3.0.1 Release Notes Switch Telestream Switch is an award-winning cross platform media player, inspector, and correction tool for professionals. Switch comes in three versions: Switch Player (free),

More information

============================================================================

============================================================================ How to delete audio tracks from clips? Posted by mysteriousmonkey29@gmail.com - 03 Jun 2015 05:21 Hello, I'm trying to combine two clips using the dve effect, but when I combine and export them, the audio

More information

2.1 Transcoding audio files

2.1 Transcoding audio files 2.1 Transcoding audio files 2.1.1 Introduction to Transcoding One of the basic tasks you can perform on an audio track is to convert it into another format. This process known as Transcoding, is the direct

More information

AVC-Intra QT v1.0 Manual

AVC-Intra QT v1.0 Manual AVC-Intra QT v1.0 Manual 20th of January 2010 table of contents AVC-Intra QT 1.0 3 Installation and Activation... 3 Using AVC-Intra QT in QuickTime Player...17 Using AVC-Intra QT in Final Cut Pro...21

More information

& Windows XP. ESC 12/Podcasting Workshop Handout/June 2009/Exec Svcs Tech/Rev 2

& Windows XP. ESC 12/Podcasting Workshop Handout/June 2009/Exec Svcs Tech/Rev 2 & Windows XP Recording and Publishing a Podcast with Audacity 1.2.6 Page 1 Recording and Publishing a Podcast with Audacity Written by Jake Ludington' (With minor modifications added by Lisa McCray) http://www.jakeludington.com/podcasting/20050222_recording_a_podcast.html

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Casio SK-5 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 2 1 2 >

More information

Slow Motion with photo morphing software Posted by juhartik - 11 May :05

Slow Motion with photo morphing software Posted by juhartik - 11 May :05 Slow Motion with photo morphing software Posted by juhartik - 11 May 2011 06:05 There has been some discussion(s) in this forum how to make slow motion effect. Most of the NLEs does not offer any tool

More information

My question may be very simple, but I am a very beginner. Please let me know, how can I save my final edit as.avi (or whatever format).

My question may be very simple, but I am a very beginner. Please let me know, how can I save my final edit as.avi (or whatever format). How to save final edit Posted by msiegel - 29 May 2012 10:39 Hi, My question may be very simple, but I am a very beginner. Please let me know, how can I save my final edit as.avi (or whatever format).

More information

Software Versions Used in this Tutorial: Final Cut Pro: Compressor: 3.0.3

Software Versions Used in this Tutorial: Final Cut Pro: Compressor: 3.0.3 This tutorial describes how to use Final Cut Pro and Compressor to create an MPEG-2 program stream for playback on LEIGHTRONIX MPEG-2 decoders. The following procedure assumes that you have already installed

More information

Still frames import with a length in frames Posted by jwrl - 28 Aug :59

Still frames import with a length in frames Posted by jwrl - 28 Aug :59 Still frames import with a length in frames Posted by jwrl - 28 Aug 2013 03:59 This thread started as a hijack of another one. The relevant posts follow: to work with animation storyboards we need fast

More information

Online Help Browser Requirements Safari *Please note: Episode 7 does not support OS X or previous versions of Mac OS X.

Online Help Browser Requirements Safari *Please note: Episode 7 does not support OS X or previous versions of Mac OS X. System Requirements Episode 7.3 Release Notes Mac Minimum System Requirements Operating System: OS X 10.11 or higher (Includes macos Sierra 10.12) RAM: 8 GB or more 256 GB hard disk space, with 300 MB

More information

Quicktime Player Error Codec For Avi Per

Quicktime Player Error Codec For Avi Per Quicktime Player Error Codec For Avi Per Oct 2, 2014. a movie and its.avi and i am getting an error post "converting" where it says. QuickTime player can't open Try another video player, such as VLC. Quicktime

More information

Online Help Browser Requirements Safari *Please note: Episode 7 does not support OS X or previous versions of Mac OS X.

Online Help Browser Requirements Safari *Please note: Episode 7 does not support OS X or previous versions of Mac OS X. System Requirements Episode 7.5 Release Notes Mac Minimum System Requirements Operating System: OS X 10.11 or higher (Includes macos Sierra 10.12) RAM: 8 GB or more 256 GB hard disk space, with 300 MB

More information

Is there any plug-in to work with Lightworks that would do motion stabilization in LW?

Is there any plug-in to work with Lightworks that would do motion stabilization in LW? Motion stabilization plug-in for LW? Posted by Danas_Anis - 04 Sep 2013 12:29 Hello! Is there any plug-in to work with Lightworks that would do motion stabilization in LW? Posted by ianconry - 05 Sep 2013

More information

Combined offline/online workflow with Lightworks Posted by gkocov - 17 Dec :55

Combined offline/online workflow with Lightworks Posted by gkocov - 17 Dec :55 Combined offline/online workflow with Lightworks Posted by gkocov - 17 Dec 2010 15:55 Here's an easy way to do a combined offline/online file based type of workflow in Lightworks: First convert the raw

More information

MITOCW watch?v=zm5mw5nkzjg

MITOCW watch?v=zm5mw5nkzjg MITOCW watch?v=zm5mw5nkzjg The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Turbo.264 HD Manual Elgato Systems LLC 900 Kearny Street Suite 750 San Francisco, CA United States of America

Turbo.264 HD Manual Elgato Systems LLC 900 Kearny Street Suite 750 San Francisco, CA United States of America Turbo.264 HD Manual 2009-2011 Elgato Systems LLC 900 Kearny Street Suite 750 San Francisco, CA 94133 United States of America Elgato Systems GmbH Nymphenburgerstr. 14 80335 München Germany http://www.elgato.com

More information

RAW WORKFLOWS: CINEFORM TOOLSET. Copyright 2008, Jason Rodriguez, Silicon Imaging, Inc.

RAW WORKFLOWS: CINEFORM TOOLSET. Copyright 2008, Jason Rodriguez, Silicon Imaging, Inc. RAW WORKFLOWS: CINEFORM TOOLSET Copyright 2008, Jason Rodriguez, Silicon Imaging, Inc. CineForm Product Family At the root of every CineForm product is the CineForm codec High bit-depth (10+ bits) 32-bit

More information

Microcontroller Compatible Audio File Conversion

Microcontroller Compatible Audio File Conversion Microcontroller Compatible Audio File Conversion Created by Mike Barela Last updated on 2018-06-07 09:10:45 PM UTC Guide Contents Guide Contents Convert Sound Files in Audacity Audacity Download Audacity

More information

'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep :56

'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep :56 'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep 2012 07:56 Here is one successful transcode workflow option using the recently released

More information

No audio yes video Posted by manemane - 29 Jan :42

No audio yes video Posted by manemane - 29 Jan :42 No audio yes video Posted by manemane - 29 Jan 2018 18:42 Hi guys! When I import my file video recordered by the YI action cam 4K+, lightworks from some time cut the audio trace. I can see only the video

More information

============================================================================

============================================================================ VMware 7 Eve stutters in windowed mode Posted by innriwins - 2014/02/10 10:28 Hi, So i started running eve on VMware 7 and i got a problem with very frequent stutters. It goes away when i change to "intervale

More information

Samsung Smart Tv Connected To Internet But Doesn't Work

Samsung Smart Tv Connected To Internet But Doesn't Work Samsung Smart Tv Connected To Internet But Doesn't Work The Samsung software is unable to connect to the internet. My smart TV can talk to local network but anything outside is no. control, or hundreds

More information

COMP : Practical 11 Video

COMP : Practical 11 Video COMP126-2006: Practical 11 Video Flash is designed specifically to transmit animated and interactive documents compactly and quickly over the Internet. For this reason we tend to think of Flash animations

More information

Multi tracks video edit - How to? Posted by pbhs - 28 Jan :19

Multi tracks video edit - How to? Posted by pbhs - 28 Jan :19 Multi tracks video edit - How to? Posted by pbhs - 28 Jan 2011 11:19 Hi to everybody, I have 5 video tracks from 5 camcorders (minidv) about a live event. I want to make a video using all this video tracks

More information

QGIS Application - Bug report #8942 R6034 runtime error

QGIS Application - Bug report #8942 R6034 runtime error QGIS Application - Bug report #8942 R6034 runtime error 2013-10-23 04:42 PM - Leszek Pawlowicz Status: Reopened Priority: rmal Assignee: Category: Build/Install Affected QGIS version:2.18.11 Regression?:

More information

Windows 7 Will Not Load On My Computer Says I'm

Windows 7 Will Not Load On My Computer Says I'm Windows 7 Will Not Load On My Computer Says I'm There are various programs which will allow you to make a copy of your entire apply to my computer even though it does say it works for this issue in Windows

More information

Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May :09

Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May :09 Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May 2011 17:09 Hi, first of all, thank you for this wonderful programme here. I am new in Video Editing and the far best piece of software out there

More information

Gecata by Movavi 5. Recording desktop. Recording with webcam Capture videos of the games you play. Record video of your full desktop.

Gecata by Movavi 5. Recording desktop. Recording with webcam Capture videos of the games you play. Record video of your full desktop. Gecata by Movavi 5 Don't know where to start? Read these tutorials: Recording gameplay Recording desktop Recording with webcam Capture videos of the games you play. Record video of your full desktop. Add

More information

Install Flash Plugin Manually Internet Explorer 9 Webm

Install Flash Plugin Manually Internet Explorer 9 Webm Install Flash Plugin Manually Internet Explorer 9 Webm hello im trying to update my adobe flash player but its stop halfway through Microsoft Internet Explorer 9 (h.264,available here, WebM support available

More information

Problems Installing Itunes 10 Windows 7 64 Bit Ing >>>CLICK HERE<<<

Problems Installing Itunes 10 Windows 7 64 Bit Ing >>>CLICK HERE<<< Problems Installing Itunes 10 Windows 7 64 Bit Ing Feb 15, 2015. 6133 Views 7 Replies Latest reply: Mar 4, 2015 5:52 PM by turingtest2 OK'ing this itunes 12.1.0.71 for Windows (64-bit - for older video

More information

Voice over problems Posted by erir - 13 Oct :15

Voice over problems Posted by erir - 13 Oct :15 Voice over problems Posted by erir - 13 Oct 2012 16:15 Hi, I am actually not sure if voice over should work at all. However I tried it and I got bad results. I am using an Mixer with USB connection to

More information

MITOCW watch?v=0jljzrnhwoi

MITOCW watch?v=0jljzrnhwoi MITOCW watch?v=0jljzrnhwoi The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

The Stack, Free Store, and Global Namespace

The Stack, Free Store, and Global Namespace Pointers This tutorial is my attempt at clarifying pointers for anyone still confused about them. Pointers are notoriously hard to grasp, so I thought I'd take a shot at explaining them. The more information

More information

Huge GPU tests difference between Linux and Windows Lightworks 14 on the same machine Posted by MarLondon - 28 Jun :00

Huge GPU tests difference between Linux and Windows Lightworks 14 on the same machine Posted by MarLondon - 28 Jun :00 Huge GPU tests difference between Linux and Windows Lightworks 14 on the same machine Posted by MarLondon - 28 Jun 2017 09:00 I use Lightworks on Ubuntu 16.04 LTS, updated proprietary Nvidia drivers etc.

More information

CODING METHOD FOR EMBEDDING AUDIO IN VIDEO STREAM. Harri Sorokin, Jari Koivusaari, Moncef Gabbouj, and Jarmo Takala

CODING METHOD FOR EMBEDDING AUDIO IN VIDEO STREAM. Harri Sorokin, Jari Koivusaari, Moncef Gabbouj, and Jarmo Takala CODING METHOD FOR EMBEDDING AUDIO IN VIDEO STREAM Harri Sorokin, Jari Koivusaari, Moncef Gabbouj, and Jarmo Takala Tampere University of Technology Korkeakoulunkatu 1, 720 Tampere, Finland ABSTRACT In

More information

General Error Final Cut Pro While Rendering

General Error Final Cut Pro While Rendering General Error Final Cut Pro While Rendering Update FCPX (currently 10.1.4) and the Pro Video Formats (currently 2.0) to the latest Hold down the option key while launching FCPX and create a new blank Library.

More information

PASIG Digital Preservation BOOTcamp Best* Practices in Preserving Common Content Types: AudioVisual files

PASIG Digital Preservation BOOTcamp Best* Practices in Preserving Common Content Types: AudioVisual files PASIG Digital Preservation BOOTcamp Best* Practices in Preserving Common Content Types: AudioVisual files Kara Van Malssen AudioVisual Preservation Solutions kara@avpreserve.com www.avpreserve.com MAY

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Roland Juno-6 User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Thread Tools Search this Thread Display

More information

Preparing Video Files for the Aja Ki Pro

Preparing Video Files for the Aja Ki Pro Preparing Video Files for the Aja Ki Pro rev. 04/12/16 The Gene Siskel Film Center has the ability to play Apple Pro Res files from an Aja Ki Pro hard drive player/recorder. r CC 2015. Aja Ki Pro. The

More information

What IT Needs to Know about Media

What IT Needs to Know about Media MACTECH 2011 What IT Needs to Know about Media Larry Jordan www.larryjordan.biz Goals Media files present massive problems for IT Discuss media formats for the Web Discuss media formats for Intranet and

More information

Virtualdub Video Compression Error Code 2

Virtualdub Video Compression Error Code 2 Virtualdub Video Compression Error Code 2 VirtualDub: Error Code -100 Here is video how Im getting this error. its crop sizes must be multiple of 4 (width) and 2 (height) for compression with divx. 2 /

More information

CSC 101: Lab #8 Digital Video Lab due date: 5:00pm, day after lab session

CSC 101: Lab #8 Digital Video Lab due date: 5:00pm, day after lab session Name: Lab Date and Time: Email Username: Partner s Name: CSC 101: Lab #8 Digital Video Lab due date: 5:00pm, day after lab session Pledged Assignment: This lab document should be considered a pledged graded

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Yamaha VSS-30 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 2 1 2

More information

Update Manual Ios 7 Ipad 1 Won't >>>CLICK HERE<<<

Update Manual Ios 7 Ipad 1 Won't >>>CLICK HERE<<< Update Manual Ios 7 Ipad 1 Won't A reader asks Rick Maybury if it's possible to upgrade his older ipad to newer software. Is it possible to upgrade an ipad 1, 16gb from ios 5 to ios 7? However, there is

More information

[Solved) Stuttering video playback in LWKS only,not on rest of laptop. Example included Posted by chj - 10 Sep :43

[Solved) Stuttering video playback in LWKS only,not on rest of laptop. Example included Posted by chj - 10 Sep :43 [Solved) Stuttering video playback in LWKS only,not on rest of laptop. Example Posted by chj - 10 Sep 2014 05:43 One day, Lightworks behaves normally, the next day the video playback is suddenly stuttering

More information

File test version. DPP Compliance Programme AMWA / UK DPP -- AS-11 UK DPP HD Shim v1.1 File Conformance Test Suite

File test version. DPP Compliance Programme AMWA / UK DPP -- AS-11 UK DPP HD Shim v1.1 File Conformance Test Suite File test version F1.1 DPP Compliance Programme AMWA / UK DPP -- AS-11 UK DPP HD Shim v1.1 File Conformance Test Suite DPP Lab, BBC R&D, Centre House, 56 Wood Lane, W12 7SB, UK CONTENTS 1 DOCUMENT OVERVIEW

More information

CineLink 4K-D Multi-Channel IP Decoder

CineLink 4K-D Multi-Channel IP Decoder CineLink 4K-D Multi-Channel IP Decoder [product image] We are receiving data on a moment-to-moment basis from all of our programs, and the video wall gives us a snapshot of events happening globally. -

More information

Total Video Converter Error While Opening Codec

Total Video Converter Error While Opening Codec Total Video Converter Error While Opening Codec Any Video Converter is a simple video converter which can convert video files total views Fix the error that tag added audio as video in Video Player tab.

More information

Uploading and Embedding Your Digital Story (YouTube/Wordpress Version)

Uploading and Embedding Your Digital Story (YouTube/Wordpress Version) Uploading and Embedding Your Digital Story (YouTube/Wordpress Version) If you were using digital stories in your classroom, you wouldn't even need to upload the videos to the Internet; you could just watch

More information

Instructor: Craig Duckett. Lecture 04: Thursday, April 5, Relationships

Instructor: Craig Duckett. Lecture 04: Thursday, April 5, Relationships Instructor: Craig Duckett Lecture 04: Thursday, April 5, 2018 Relationships 1 Assignment 1 is due NEXT LECTURE 5, Tuesday, April 10 th in StudentTracker by MIDNIGHT MID-TERM EXAM is LECTURE 10, Tuesday,

More information

A PROGRAM IS A SEQUENCE of instructions that a computer can execute to

A PROGRAM IS A SEQUENCE of instructions that a computer can execute to A PROGRAM IS A SEQUENCE of instructions that a computer can execute to perform some task. A simple enough idea, but for the computer to make any use of the instructions, they must be written in a form

More information

Compression; Error detection & correction

Compression; Error detection & correction Compression; Error detection & correction compression: squeeze out redundancy to use less memory or use less network bandwidth encode the same information in fewer bits some bits carry no information some

More information

Manually Sync App Itunes Iphone Without >>>CLICK HERE<<<

Manually Sync App Itunes Iphone Without >>>CLICK HERE<<< Manually Sync App Itunes Iphone Without Deleting Everything Learn how to set up your device for automatic or manual syncing. Select the type of content you want to sync (for example, Music or Apps) in

More information

============================================================================

============================================================================ Linux, Cinnamon: cannot create panel icon Posted by JN_Mint - 2019/01/05 21:28 In Cinnamon (on Mint 19.3), with 'show tray icon' enabled in Rainlendar, there is no icon in any panel on my system and Cinnamon

More information

Manually Setup Yahoo Mail Iphone 5 Can't >>>CLICK HERE<<<

Manually Setup Yahoo Mail Iphone 5 Can't >>>CLICK HERE<<< Manually Setup Yahoo Mail Iphone 5 Can't Comes up with 'The IMAP server "apple.imap.mail.yahoo.com" is not responding. If it doesn't allow you to change it, add the account manually by going to Settings

More information

Codec Error Help Please Use Windows Media Player

Codec Error Help Please Use Windows Media Player Codec Error Help Please Use Windows Media Player Certain avi file won't play in Windows Media Player with error message says: Windows Media Player used to support all video codecs that compressed in AVI.

More information

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly.

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly. Wrong time on recurring google calendar events Posted by AraldoL - 2014/01/11 06:21 Hello, using the latest stable Rainlendar Pro 2.12 I had some issues: After every installation on my two computers it

More information

Understandable manual? Posted by Max Besser - 02 Feb :10

Understandable manual? Posted by Max Besser - 02 Feb :10 Understandable manual? Posted by Besser - 02 Feb 2011 17:10 www.lightworksbeta.com/index.php?option=com_kunena&func=view&catid=6&id=5100& amp;limit=6&limitstart=6&itemid=202#5167 Forum Admin wrote: @ Besser

More information

The AiM Codec for Windows and OSX

The AiM Codec for Windows and OSX The AiM Codec for Windows and OSX The Avolites Ai server plays QuickTime movies, but it uses its own special codec called AiM. The AiM codec is not installed with QuickTime by default, but is free to download

More information

No audio output when using Windows 8 64 bit and Lightworks bit Posted by bobbradley - 25 Jun :15

No audio output when using Windows 8 64 bit and Lightworks bit Posted by bobbradley - 25 Jun :15 No audio output when using Windows 8 64 and Lightworks 11.1 64 Posted by bobbradley - 25 Jun 2013 20:15 Hello I wonder if anyone can help with a problem I have encountered. I have just rebuilt my pc moving

More information

Problems Installing Itunes 10 Windows 7 64 Bit Latest Version >>>CLICK HERE<<<

Problems Installing Itunes 10 Windows 7 64 Bit Latest Version >>>CLICK HERE<<< Problems Installing Itunes 10 Windows 7 64 Bit Latest Version If you have issues installing itunes, try the options outlined in Issues installing itunes, Apple Software Update, Apple Mobile Device Support,

More information

AVID - How to Make a 1920 x Surround Sound QuickTime Using Your Surround Sound Mix

AVID - How to Make a 1920 x Surround Sound QuickTime Using Your Surround Sound Mix AVID - How to Make a 1920 x 1080 5.1 Surround Sound QuickTime Using Your Surround Sound Mix If your mixer did not give you "One" file that contains 6 channel but instead gave you 6 separate.wav files then

More information

How it works on the Audio Everywhere Cloud? Summing up, required assets Assets examples Sliding Banners How it works on the

How it works on the Audio Everywhere Cloud? Summing up, required assets Assets examples Sliding Banners How it works on the Contents Introduction... 4 General Options... 4 Getting to the menu... 4 How tables works?... 5 Errors display... 6 Browser validations... 6 Server validations... 6 How to access to Cloud Server... 7 Log

More information

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between MITOCW Lecture 10A [MUSIC PLAYING] PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between all these high-level languages like Lisp and the query

More information

AVID - Creating Subtitle Deliverables for Film Festivals and Packages

AVID - Creating Subtitle Deliverables for Film Festivals and Packages AVID - Creating Subtitle Deliverables for Film Festivals and Packages The purpose of this wiki is to demonstrate how to export your title media in Avid Media Composer and re-purpose them into a valid SubRip

More information