Re: [FFmpeg-user] Add soft subtitles to YouTube Mouse Stream?

2019-11-20 Thread Moritz Barsnick
On Wed, Nov 20, 2019 at 14:30:27 -0600, Steven Kan wrote: > Danke für deine Hilfe! Gerne! > Yes, I have mice in my yard :-( > > They can actually invade a weak hive and wreak havoc! Do you remember > approximately when you saw it? YT automatically archives the footage > twice a day, so I’d like t

Re: [FFmpeg-user] ffmpeg cuvid not transcoding properly

2019-11-20 Thread Andy
It seems like again I hit the wall. While one mpeg2 source works with the mpeg2_cuvid option, the other gives me troubles. ffmpeg -threads 1 -vsync 1 -hwaccel cuvid -c:v mpeg2_cuvid -deint 1 -drop_second_field 1 -i 'http://0.0.0.0:46007' -c:v h264_nvenc -vb 1000k -preset:v medium -c:a aac -ac 2 -a

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Steven Kan
The good news is that all the required pieces appear to exist; the bad news is that no one has yet (to my knowledge) glued them together to make a functional solution. Here’s someone who has gotten very close: https://github.com/szatmary/libcaption/issues/55#issuecomment-525688953 "I would like

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Steven Kan
Hi Michael, Thanks! I actually have a cron job to stop, pause, and restart the streams every 12 hours, because otherwise the YT archived videos sometimes fail to upload. Somewhere in my processing chain something usually craps out every few days, but even then I would sometimes have streams th

Re: [FFmpeg-user] Add soft subtitles to YouTube Mouse Stream?

2019-11-20 Thread Steven Kan
Danke für deine Hilfe! Yes, I have mice in my yard :-( They can actually invade a weak hive and wreak havoc! Do you remember approximately when you saw it? YT automatically archives the footage twice a day, so I’d like to review it and see the mouse! Thank again! > On Nov 20, 2019, at 7:11 AM

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Verachten Bruno
That's a very interesting subject (to me at least). I would like to embed automatic (or human generated, depending on the budget) subtitles to help hearing-impaired people grab most of the talk in our conference. I am producing H.264 and sending it (for the time being) to YouTube, so your request i

[FFmpeg-user] Producing several quality video streams from one 1080p stream.

2019-11-20 Thread Verachten Bruno
Hi there, First of all, sorry for being vague, I don't have ffmpeg command line options yet, I'm just trying to know if I'm totally mistaken, or if my idea could be implemented quite safely/easily. I'm currently thinking of getting rid of YouTube for streaming within the company I work for (becau

Re: [FFmpeg-user] encoding H264 from pictures, encoding values manipulation

2019-11-20 Thread Carl Eugen Hoyos
Am Mi., 20. Nov. 2019 um 16:39 Uhr schrieb Jorge Mas : > im trying to generate a video with the same h264 encoding parameters > as a video that was given to me. In addition to what Moritz wrote, I'd like to add that this may not be possible depending on the used encoders. Carl Eugen

Re: [FFmpeg-user] encoding H264 from pictures, encoding values manipulation

2019-11-20 Thread Moritz Barsnick
On Wed, Nov 20, 2019 at 16:38:49 +0100, Jorge Mas wrote: > ./ffmpeg.exe -framerate 25 -i $picture%04d.jpg -g 1 -c:v libx264 > -profile:v baseline -level 4.0 -crf 20 -pix_fmt yuv420p $picture.mp4 > ./ffmpeg.exe -i $picture.mp4 -vcodec copy -vbsf h264_mp4toannexb -an > $picture.mp4.h264 You don'

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Michael Shaffer
I noticed your Youtube streams only last a day or so. I have a Python script I made that keeps the ffmpeg process sending to Youtube. I have 5 IP cameras going to youtube and they have been going about 9 months without the stream ending. Anyways, if you want I could show you how the script works. Y

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Moritz Barsnick
On Wed, Nov 20, 2019 at 16:05:12 +0100, Moritz Barsnick wrote: > > and this page saying that the captions can be pushed via RTMP: > > https://ghuntley.com/notes/closed-captioning/ > > > > I know this is somewhat OT for ffmpeg, but can I push two RTMP

[FFmpeg-user] encoding H264 from pictures, encoding values manipulation

2019-11-20 Thread Jorge Mas
Hello. Im new using ffmpeg and mostly in the video field. im trying to generate a video with the same h264 encoding parameters as a video that was given to me. im generating a h264 video parting from pictures, the commands that im using are the following: ./ffmpeg.exe -framerate 25 -i $pictur

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Moritz Barsnick
On Wed, Nov 20, 2019 at 08:43:00 -0600, Steven Kan wrote: > > https://trac.ffmpeg.org/ticket/1778#comment:10 > > > > If I’m demuxing your answer correctly, the answer is “no,” at least > of now. Thank for your reply; at least now I won’t spend hour

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Steven Kan
> On Nov 20, 2019, at 7:11 AM, Moritz Barsnick wrote: > > On Tue, Nov 19, 2019 at 22:45:44 -0600, Steven Kan wrote: >> What I want to do is add some captions to the video as soft >> subtitles, e.g. my location, the present temperature, and the weather >> forecast. I don’t have enough CPU on the P

Re: [FFmpeg-user] Concatenating grows file size

2019-11-20 Thread Cecil Westerhof
Moritz Barsnick writes: > On Wed, Nov 20, 2019 at 11:54:43 +0100, Cecil Westerhof wrote: >> ffmpeg -f concat -safe 0 -i <(echo "${files}") -c copy ${newFile}.mts >> >> I would expect the resulting file to have the same size as the >> original files, but the size grows. The input files are tog

Re: [FFmpeg-user] Add soft subtitles to YouTube Stream Now?

2019-11-20 Thread Moritz Barsnick
On Tue, Nov 19, 2019 at 22:45:44 -0600, Steven Kan wrote: > First time poster, so please be kind if I ask anything stupid! Not at all! > I have a live BeeCam feed on YouTube: > https://www.youtube.com/channel/UCE0jx2Z6qbc5Co8x8Kyisag/live >

Re: [FFmpeg-user] Concatenating grows file size

2019-11-20 Thread Moritz Barsnick
On Wed, Nov 20, 2019 at 11:54:43 +0100, Cecil Westerhof wrote: > ffmpeg -f concat -safe 0 -i <(echo "${files}") -c copy ${newFile}.mts > > I would expect the resulting file to have the same size as the > original files, but the size grows. The input files are together > 10.6 GB while the concat

Re: [FFmpeg-user] Reducing video file size

2019-11-20 Thread James Northrup
i don't always make reccomendations about codecs and filters I'm unfamiliar with, but luckily i wrote a tool to accelerate the buffoonery in times of critical need https://jnorthrup.github.io/ffblockly/ [image: image.png] ___ ffmpeg-user mailing lis

[FFmpeg-user] Concatenating grows file size

2019-11-20 Thread Cecil Westerhof
I use the following Bash code to concatenate some video files: first=15 last=20 files=$( for i in $(seq ${first} ${last}) ; do printf "file ${PWD}/%05d.MTS\n" $i done ) newFile=$(printf "%05d-%05d" ${first} ${last}) ffmpeg -f concat -safe 0 -i <(e