Video Reader and Audio
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jessica
el 22 de Mayo de 2018
Respondida: Walter Roberson
el 22 de Mayo de 2018
I am using the below code to merge multiple videos together. Is it possible to save the audio from one of the videos to the merged (new) video?
vid1 = VideoReader(LeftVideo,'CurrentTime',TimeOffset_L);%Left
vid2 = VideoReader(RightVideo,'CurrentTime',TimeOffset_R);%Right
videoPlayer = vision.VideoPlayer;
outputVideo = VideoWriter(OutPutVideo);
outputVideo.FrameRate = vid1.FrameRate;
open(outputVideo);
for i=1:60
img1 = readFrame(vid1);
img2 = readFrame(vid2);
imgt=[img1 img2];
step(videoPlayer, imgt);%play video
writeVideo(outputVideo, imgt); %record new video
end
release(videoPlayer);
close(outputVideo);
0 comentarios
Respuesta aceptada
Walter Roberson
el 22 de Mayo de 2018
https://www.mathworks.com/help/matlab/ref/videowriter.html VideoWriter cannot write audio.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!