Editando vídeos multicam no Linux

2

O Multicam é um recurso em que você pode combinar vários videoclipes (por exemplo, uma banda da Internet cujos membros gravam seu próprio instrumento em casa e depois misturam todos os vídeos dos membros em um único vídeo), com todos os vídeos organizados em uma tela e todas as faixas de áudio misturadas.

Eu tentei o Cinelerra e o Kdenlive, mas parece que eles não suportam isso.

Posso fazer edição multicâmera com esses programas ou com qualquer outro programa Linux?

    
por Yu Qing 21.01.2013 / 03:11

3 respostas

3

O

O Blender lida com o multicam. Entrada manual aqui.

Ever wanted to do multicam editing with Blender? Now you can and it is mindbogglingly easy:

  • Add your input strips on channels say 1 to 4 (you can use as many you like, interface get's a little bit clumky if you have more than 10, see below).
  • Sync the strips up. There is no automatic sync feature in Blender, but you can open two viewer windows, choose one camera as the master channel and sync the other against them just by looking at the movement of legs or light flashes (depending of the show, you want to edit). We might add automatic sync feature based on global brightness of the video frames in the future. (Syncing based on the audio tracks, like most commercial applications do, isn't very clever, since the speed of sound is only around 340 metres per second and if you have one of you camera 30 meters away, which isn't uncommon, you are already 2-3 frames off. Which is noticeable...)
  • Build small resolution proxies (25%) on all your input video strips.
  • Use meta strips, so that every input camera fits in exactly one channel.
  • Add a viewer window for every input channel and put it into 25% proxy display mode (I suggest to line them up on the left side on top of each other, but just do, whatever pleases your personal habits)
  • Add a large viewer window for the final output and let it run on full resolution.
  • Add a multicam selector effect strip above all the channel tracks
  • Enlarge it, so that it covers the whole running time of your show (just change it's length or drag the right handle, the former is probably easier, since you can just type in a very large number and you are done)
  • Cross you fingers :) (that's important :) )
  • Select the multicam strip, if you take a look at the strip options (N-key), you will notice, that multicam is a rather simple effect strip: it just takes a selected channel as it's input. That's all. The magic comes with the convenient keyboard layout: when you select multicam, the keys 1-0 are mapped to a python handler, that does a cut on the multicam and changes it's input.
  • So: you select the multicam strip, you start playback and hit the keys 1-4 while watching your show.
  • You'll end up with a small multicam selector strip for every cut.
    
por 03.10.2013 / 08:17
0

Experimente o Synfig.

Estúdio SYNFIG

Não há motivos para você não ter podido compor vários vídeos em um frame (todos os vídeos em um frame) e exibi-lo como um único vídeo. Embora você possa ter que converter os vídeos originais em seqüências de imagens primeiro. Mas tenho certeza de que isso pode ser feito. O Synfig não é um pacote de composição (é mais projetado para animações no estilo de desenho animado), embora possa ser usado para fazer o que você está descrevendo.

Se você tiver que editar o vídeo, tente o openshot.

Editor de vídeos do OpenShot

    
por 24.01.2013 / 02:42
0

Descobri que o multicam é suportado por Vivia

O Kdenlive também pode ser usado para isso desde a versão 0.9. O Ubuntu contém a versão anterior 8, então você precisa adicionar o PPA ppa: sunab / kdenlive-release

Você também pode criar vídeos com scripts do AviSynth:

a = AVISource ("video1.avi")
b = AVISource ("video2.avi")
return stackhorizontal (a,b)

Editores que defenetelly não suportam: VrtualDub, Kino, Avidemux, Blender (tem 'multicam', mas é modelagem 3D).

Talvez no recurso Pitivi seja compatível com multicam (está no roteiro Google_Summer_of_Code).

    
por 27.10.2013 / 00:49