tdem

I like boats.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
video-editing [2016/12/28 02:56]
tdem [Video Editing]
video-editing [2016/12/28 10:29]
tdem [Moving tracks in Shotcut]
Line 23: Line 23:
 [[http://​ffdshow-tryout.sourceforge.net|ffdshow tryouts]]. This is a Codec which allows you to encode your new video in h.264, without this or another codec you will get giant video files. While installing, make sure you tick the box that says install as plugin for VirtualDub, and select the plugin folder where it needs to go at the appropriate time. I left all the other settings to default. [[http://​ffdshow-tryout.sourceforge.net|ffdshow tryouts]]. This is a Codec which allows you to encode your new video in h.264, without this or another codec you will get giant video files. While installing, make sure you tick the box that says install as plugin for VirtualDub, and select the plugin folder where it needs to go at the appropriate time. I left all the other settings to default.
  
-That's it! To use, I open the video (after conversion to avi) in virtualdub. In video>​filters enable the deshaker plugin, make sure it's on pass one. Play your video then set it back to the beginning. Now go back to the deshaker ​plugin ​and select pass 2. You can set your output to not have black borders there. ​Again run through the video. Under video>​compression make sure ffdshow is selected. Now you can save using file>​save as avi. The end.+That's it! To use, I open the video (after conversion to avi) in virtualdub. In video>​filters enable the deshaker plugin, make sure it's on pass one. Play your video using the play button with the little o on it. Now go back to the deshaker ​filter ​and select pass 2. You can set your output to not have black borders there if desiredPress OK. Under video>​compression make sure ffdshow is selected. Now you can save using file>​save as avi. The end.
  
  
Line 49: Line 49:
 Good news: Virtualdub and deshaker, as well as MP4Cam2AVI all work pretty much perfectly in wine!  Good news: Virtualdub and deshaker, as well as MP4Cam2AVI all work pretty much perfectly in wine! 
  
-Also - Shotcut is another video editor which works similarly to lightworks. Cross platform as well.+ 
 +===== Shotcut ​===== 
 +I've had a few annoyances with lightworks, including audio stuttering and crashes. As well as the annoyance of having to log in on a regular basis. Also mixing media types is a pain. 
 + 
 +After some experimentation I'm currently using [[https://​www.shotcutapp.com|Shotcut]]. It works similarly to Lightworks. Cross platform as well. It's a much simpler program, but has its idiosyncrasies as well. 
 + 
 +The main thing I miss from Lightworks is naming clips and subclips and organising into bins. This is especially helpful when editing several hours of gopro footage where all the thumbnails look exactly the same. Also Lightworks is a bit more consistent in its "​weird"​ way of editing, which is very helpful once you get the hang of it. 
 + 
 +==== Moving tracks in Shotcut ==== 
 +One feature Shotcut appears to be missing is reordering tracks. That is, if you insert a new track it is always before the current track, which can be very annoying. 
 + 
 +However, it **is possible** to move tracks in Shotcut! But you need to do it from outside the program. 
 + 
 +Basically open up your projects save file (projectname.mlt) file in a text editor, or even better an editor with syntax highlighting like Geany. 
 + 
 +Find the blocks of xml that define your tracks. They will look something like this: 
 + 
 +<code xml> ​ <​playlist id="​playlist0">​ 
 +    <​property name="​shotcut:​video">​1</​property>​ 
 +    <​property name="​shotcut:​name">​V2</​property>​ 
 +    <blank length="​00:​01:​10.040"/>​ 
 +    <entry producer="​producer39"​ in="​00:​00:​00.000"​ out="​00:​00:​24.400"/>​ 
 +  </​playlist>​ 
 +</​code>​ 
 +Note the shotcut:​name property which helps you identify which "​playlist"​ is which track. Now all you need to do to reorder your tracks is swap the id of your two tracks! 
 + 
 +In my case I changed playlist0 to playlist1 and vice versa. 
 + 
 +Next time you load this file the changes are applied. Needless to say you should create a backup of the file first! This procedure has not really been tested extensively,​ but seems to work so far.