(→Do and donts) |
(→Dos and donts) |
||
| (2 intermediate revisions not shown) | |||
| Line 9: | Line 9: | ||
Use XVidCap to capture a screencast from a selected area of your desktop in MPEG format. | Use XVidCap to capture a screencast from a selected area of your desktop in MPEG format. | ||
| - | If you prefer shooting mute screencasts and record a soundtrack separately, you can use any recording software for recording. A common option is gnome-sound-recorder. | + | If you prefer shooting mute screencasts and record a soundtrack separately, you can use any recording software for recording. A common option is gnome-sound-recorder. If your demo video is very speech intensive it might be a good idea to first record and edit the speech and then record a video to match the speech track. |
Gstreamer can be used to add a soundtrack to a mute screencast. The following spell combines an MPEG video with an ogg vorbis soundtrack and produces an avi video. | Gstreamer can be used to add a soundtrack to a mute screencast. The following spell combines an MPEG video with an ogg vorbis soundtrack and produces an avi video. | ||
| Line 28: | Line 28: | ||
* Do not tweak the settings, go with defaults :) (sampos) | * Do not tweak the settings, go with defaults :) (sampos) | ||
* I had problems converting the ogv from record-my-desktop to avi with mencoder or ffmpeg, finally managed with winff. (sampos) | * I had problems converting the ogv from record-my-desktop to avi with mencoder or ffmpeg, finally managed with winff. (sampos) | ||
| + | * Audacity is great for recording and editing audio. (rrraimo) | ||
| + | * For the gstreamer spells I had to install at least gstreamer0.10-plugins-ugly-multiverse on ubuntu. (rrraimo) | ||
There have been a lot of challenges in shooting, editing, and uploading a video successfully to YouTube especially on Linux. This page contains some hints how to shoot a video and how to upload it.
Feel free to add/combine your experiences here.
YouTube accepts a lot of video formats. However, in many cases the contents of an accepted video is scrambled when viewing the uploaded video. Uploading has been most reliable when using AVI format with a well-known resolution.
Use XVidCap to capture a screencast from a selected area of your desktop in MPEG format.
If you prefer shooting mute screencasts and record a soundtrack separately, you can use any recording software for recording. A common option is gnome-sound-recorder. If your demo video is very speech intensive it might be a good idea to first record and edit the speech and then record a video to match the speech track.
Gstreamer can be used to add a soundtrack to a mute screencast. The following spell combines an MPEG video with an ogg vorbis soundtrack and produces an avi video.
gst-launch-0.10 filesrc location=my_video.mpeg ! \ decodebin ! videoscale ! video/x-raw-yuv,width=1280,height=720 ! ffmpegcolorspace ! queue ! xvidenc ! \ queue max-size-bytes=1000000 max-size-time=0 ! avimux name=mux \ filesrc location=my_audio.ogg ! oggdemux ! vorbisdec ! audioconvert ! audioresample ! lame ! \ queue max-size-bytes=1000000 max-size-time=0 ! mux. \ mux. ! queue max-size-bytes=1000000 ! filesink location=final_video.avi
Pitivi video editor looks promising for editing videos. However, it does not cope well with non-standard resolutions, formats, or framerates. And it's not known how to export a proper HD video from it.
Record-my-desktop. Any experiences?