Skip to main content

All Questions

Tagged with
1 vote
1 answer
106 views

Ffmpeg image parameter for YouTube

Is there any image png command equivalent to parameter below? ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt ...
Michael's user avatar
  • 21
1 vote
0 answers
51 views

Ffmpeg webm YouTube settings command

Is there a .webm still image command in ffmpeg that is best compatible with YouTube I’m currently using: ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune ...
Michael's user avatar
  • 21
2 votes
2 answers
1k views

Create video from one picture and one audio file

I'm trying to create a video from one picture and one audio file. The video should be as long as the audio file, displaying the same picture the whole duration. This command does not work correctly. ...
Matej's user avatar
  • 23
0 votes
1 answer
907 views

ffmpeg stream new image every x seconds to youtube

I know how to stream a single image with sound to youtube via ffmpeg ffmpeg -f concat -safe 0 -i music.txt -loop 1 -i input.png -c:v libx264 -preset ultrafast -c:a copy -f flv rtmp://a.rtmp.youtube....
dougo22's user avatar
0 votes
1 answer
996 views

Downloading and merging mp3 in time-range from Youtube using youtube-dl and ffmpeg

Background I am trying to download best quality mp3 from Youtube videos in specified time range (first 30 seconds, 20-55 seconds etc), and then merge them to create one output file. Tools being used ...
Green goblin's user avatar
0 votes
0 answers
241 views

FFMPEG IP Camera streaming on Youtube

Here's the command I'm using: ffmpeg -fflags genpts+igndts+discardcorrupt+ignidx+nobuffer -rtsp_transport tcp -i rtsp://*************** -c:v copy -af aresample=async=1:min_hard_comp=0.100000:first_pts=...
d4rt's user avatar
  • 1
-2 votes
1 answer
3k views

Why is my YouTube video distorted on so many mobile devices?

A few hours after I uploaded an FFmpeg-encoded YouTube video, the few people that I had sent it to started reporting a strange issue: that the first 26 minutes of the audio sounded very distorted; ...
Hashim Aziz's user avatar
  • 13.1k
4 votes
2 answers
3k views

ffmpeg - Merge mp4 video with wav audio

I want to get the best audio for a youtube video upload. I found out that mov can retain the audio intact. I've tried doing so, but I get an AAC audio instead. Here's the command I use: ffmpeg -i ...
panosl's user avatar
  • 191
1 vote
1 answer
1k views

ffmpeg: .ogv to .mp4 - audio video not synchronized

I have a video in .ogv and want to convert it to .mp4 so I can upload it to youtube. I am trying ffmpeg for it: ffmpeg -i *.ogv -acodec libmp3lame -vcodec libx264 -crf 18 Windup-demo.mp4 After ...
Ondra Žižka's user avatar