2025-03-27 00:13:40 next i will change the management on the memory varaiable string and array , instead of a array il will use linked list 2025-03-27 09:09:08 yeah, I have a collection of recipes for it in ffmpeg-notes.md in pavnotes2 2025-03-27 09:09:46 It doesn't help that the options seem to have evolved over time, and there's still lots of older, no longer correct info online. 2025-03-27 09:09:57 I will take a look at your notes - thanks. 2025-03-27 09:10:53 To see what a video is, `ffprobe f.mp4`; To set a bandwidth budget for video use `-b:v`; To set a bandwidth budget for audio use `-b:a`; To reduce bandwidth further, reduce the framerate and resolution and audio budget; etc. 2025-03-27 09:10:53 Hmm, I think they're usually pretty good about maintaining backwards compatibility 2025-03-27 09:11:11 I'm using it on an rtsp stream from a camera. 2025-03-27 09:12:04 I've currently got a command that will catch the stream and save it in 15-minute timestamped segments. That works well, but it will run for a few hours and then drop - I assume due to some network error. 2025-03-27 14:19:34 mforth: STRING MACRON 2025-03-27 14:19:57 mforth: " Macron est un saint homme " MACRON ! 2025-03-27 14:20:14 mforth: MACRON @ PRINT 2025-03-27 14:20:14 Macron est un saint homme 2025-03-27 14:42:01 mforth: WORDS 2025-03-27 14:42:01 .S . + - * / MOD DUP DROP SWAP OVER ROT >R R> R@ = < > AND OR NOT CR EMIT VARIABLE @ ! DO LOOP I WORDS LOAD CREATE ALLOT ." CLOCK BEGIN WHILE REPEAT AGAIN SQRT UNLOOP +LOOP PICK EMIT CR CLEAR-STACK PRINT FORGET STRING " 2DROP DP DOUBLE FACT POW FIBONACCI COUNTDOWN TUCK SUM_SQUARE CUBE SUM_CUBES RECUNACCI CAT :D PGCD PRIME? SEED COUNT NUMS STARS INIT-RANDOM RANDOM RAND INIT-NUMS SHUFFLE-NUMS 2025-03-27 15:11:42 :-) 2025-03-27 15:51:03 mforth: 1000000 NUM-TO-BIN 2025-03-27 15:51:03 11110100001001000000 2025-03-27 15:51:48 mforth: 1000000 10 << NUM-TO-BIN 2025-03-27 15:51:48 111101000010010000000000000000 2025-03-27 17:10:53 mforth: WORDS 2025-03-27 17:31:36 multi: LOAD "test.fth" 2025-03-27 17:31:43 multi: 1 31 << 1 - PRIME? . 2025-03-27 17:32:40 mforth: LOAD "test.fth" 2025-03-27 17:32:54 mforth: 1 31 << 1 - PRIME? 2025-03-27 17:33:05 mforth: . 2025-03-27 17:33:05 1 2025-03-27 17:35:30 xentrac: Turns out that ffmpeg needs the reconnect option specified as part of the URL. So generally 'ffmpeg -i rtsp://ip:port/channel?reconnect=1 '. And the help/docs don't make that AT ALL apparent. I was trying to put it in and it just wasn't working. It seems to do the trick now that I have it in the right place, though. 2025-03-27 17:36:23 So not only is there a MOUNTAIN of options and flags, but there are several places you can put them in the command, with little guidance as to what goes where. 2025-03-27 17:37:38 I tried to ask about it in #ffmpeg, and got called a troll. That was a first. Definite difference between the atmosphere there vs. #kicad - the #kicad guys are just as friendly as they can be. 2025-03-27 17:55:46 I don't think the person that did that was prominent in the channel though - just someone that woke up on the wrong side of the bed today, I guess. 2025-03-27 18:04:30 or the previous 640 askers were help vampires 2025-03-27 18:08:58 Possibly, I guess, but even so a "help vampire" isn't a "troll" - those are entirely different things. 2025-03-27 19:36:51 mforth: 1 127 << 1 - PRIME? . 2025-03-27 19:36:51 1 2025-03-27 20:44:41 aha, ?reconnect=1, amazing 2025-03-27 20:45:16 I wonder why video decoding projects are so hostile 2025-03-27 20:45:41 Gabucino in MPlayer was particularly notorious 2025-03-27 20:46:31 glibc has also had a few spicy maintainers 2025-03-27 20:51:03 Ulrich really isn't in the same league as Gabucino 2025-03-27 20:52:37 ugh, Firefox just got upgraded out from under me 2025-03-27 21:12:26 You mean the upgrade changed something critically damaging to your use case? 2025-03-27 21:14:03 Yeah, that reconnect=1 made all the difference - it went from being "usable but unpleasantly erratic" to "pretty much solid as a rock." 2025-03-27 21:14:48 The glitches don't vanish - I still get a few skips, a second or two here or there of gray screen, but the overall pattern is solid. 2025-03-27 21:15:34 I can just take what I've got now and background it, so that no console window is consumed, and that'll be long-term good. 2025-03-27 21:20:53 no, I just couldn't load any new web pages until I restarted it 2025-03-27 22:17:07 mforth: : 1 127 << 1 - PRIME? . 2025-03-27 22:17:22 mforth: ; 2025-03-27 22:17:34 1 127 << 1 - PRIME? . 2025-03-27 22:17:39 mforth: 1 127 << 1 - PRIME? . 2025-03-27 22:17:39 Error: Stack underflow 2025-03-27 22:18:04 mforth: 1 127 << 1 - PRIME? . 2025-03-27 22:18:04 0 2025-03-27 22:19:34 mforth: 1 127 << 1 ) PRIME? 2025-03-27 22:19:34 Unknown word: ) 2025-03-27 22:19:51 mforth: 1 127 << 1 - PRIME? . 2025-03-27 22:19:51 1 2025-03-27 22:20:02 better 2025-03-27 22:29:12 i am working on a new version with linked list for string variable and array