6

I have a Sony CX115 and I have a little footage I'd like to put on youtube. I've downloaded Arista from the Ubuntu Software Center and then I've downloaded its Youtube HD plugin. I've converted my video and uploaded it to youtube... The result is a flashy video with a lot of grey in it:

http://www.youtube.com/watch?v=1V08e5PkVDI

What could I do to publish it in high quality so it'll be viewable?

Pitto
  • 1,938

4 Answers4

7

As an alternative, can I suggest you use OpenShot to edit video and also upload HD quality video to Youtube.

You export the video similar to this picture.

enter image description here

You can then use the inbuilt upload feature to send to Youtube

enter image description here

fossfreedom
  • 172,746
  • Oh great! It looks easy: I was looking for that. Can I also convert a folder full of videos or I have to export one video at a time? – Pitto May 26 '11 at 22:14
  • Oh that's great... Any info about how to set the openshot-renderer using cli to export hd videos to youtube? – Pitto May 27 '11 at 06:38
  • @pitto - having investigated further, I dont think openshot-renderer will do what you want. Your question referred to converting and uploading a video. If you want to do lots then see the link @lekensteyn above - handbrake would be my choice. – fossfreedom May 27 '11 at 17:36
2

This may help:

Transcoding is made easy by using several GUI's or command line tools. Of which I previously posted this answers, I hope this help you.

What is the best tool for converting and reading video to be played on DVD players?

How can I maximum compress video files?

Additionally, there are a few other answers in this forum under the "video" tag which may be useful for you.

Good luck!

P.S. If you are using a 64 bit system you may be interested in this: How to install 32 bit software in 64 bit system from within the Israel Linux Remix Team, posted by me in the past. Certain software may misbehave when using this procedure but it is yet good for transcoding or downloading from youtube the appropiate video file (.flv).

BTW: You can upload almost any video file with almost any codec which Youtube will transcode, suggested by Youtube:

Best Formats for Uploading

YouTube can accept almost any video format for upload, but for most users we have found the following settings give the best results.

Video Format: H.264, MPEG-2 or MPEG-4 preferred Aspect Ratio: Native aspect ratio without letterboxing (examples: 4:3, 16:9) Resolution: 640x360 (16:9) or 480x360 (4:3) recommended Audio Format: MP3 or AAC preferred Frames per second: 30 Maximum length: 10 minutes (we recommend 2-3 minutes) Maximum file size: 1 GB

1

Upload mp3 to youtube on ubuntu 14.04

Here's a shell script that uses avconv (which is available on Ubuntu 14.04):

#!/bin/sh

PIC=$1 SND=$2

if [ -z "$SND" ]; then echo "Usage: $0 [image] [audio]" exit 1 fi

OUT=echo "$SND" | sed s/\.[a-z0-9]*$/.mp4/

avconv -loop 1 -f image2 -i "$PIC" -i "$SND" -acodec copy -shortest "$OUT"

Also available as gist.

0

Probably YouTube made some adjustments but I managed to upload an ogv video file directly on YouTube.

Bruno Pereira
  • 73,643
  • Results may vary. When I first tried to upload an Ubuntu 10.04 screencast I made using Gtk-RecordMyDesktop to YouTube, the result was solid green video. It's a safer bet to convert videos into an officially supported format like WebM first before uploading. – Knowledge Cube Nov 27 '12 at 23:53