Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Carl Zwanzig
On 7/8/2022 3:18 PM, Paul B Mahol wrote: Perhaps you use too much clones. Care to explain, or was that just a cheap shot at Phil? z! ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe,

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Paul B Mahol
On Fri, Jul 8, 2022 at 10:44 PM Phil Rhodes via ffmpeg-user < ffmpeg-user@ffmpeg.org> wrote: > > I did NOT, I repeat, NOT write the message below. > > I had that happen last week, in the thread titled "Re: [FFmpeg-user] > asubboost and asupercut" > Perhaps you use too much clones. > > On Sun,

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Phil Rhodes via ffmpeg-user
> I did NOT, I repeat, NOT write the message below. I had that happen last week, in the thread titled "Re: [FFmpeg-user] asubboost and asupercut" > On Sun, Nov 29, 2020 at 6:07 PM Phil Rhodes via ffmpeg-user > wrote: ...no, he didn't. P On Friday, 8 July 2022 at 21:37:43 BST, Bouke /

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Bouke / Videotoolshed
WTF, I did NOT, I repeat, NOT write the message below. And my mail has not been hacked, so what is going on? Bouke > On 8 Jul 2022, at 12:17, Bouke / Videotoolshed > wrote: > > Please provide full command and console output, and do NOT top post here! >> >> I have a raw video file captured

Re: [FFmpeg-user] hls playlist got wiped out when ffmpeg runs as systemd child process

2022-07-08 Thread Reindl Harald
Am 08.07.22 um 18:16 schrieb Greg Oliver: On Fri, Jul 8, 2022 at 5:25 AM jb wrote: Hello everybody, I have a control program which running as a systemd service. This program spawns ffmpeg and that is writing to a HLS playlist. I use this flags: -hls_flags

Re: [FFmpeg-user] hls playlist got wiped out when ffmpeg runs as systemd child process

2022-07-08 Thread Greg Oliver
On Fri, Jul 8, 2022 at 5:25 AM jb wrote: > Hello everybody, > > I have a control program which running as a systemd service. This > program spawns ffmpeg and that is writing to a HLS playlist. I use this > flags: > > -hls_flags append_list+delete_segments+omit_endlist+program_date_time > >

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Carl Zwanzig
On 7/8/2022 3:24 AM, Naveen.B wrote: Attaching the screenshot of the console and the complete command, Please, not a screenshot! put the text right in the email. I did not understand what you mean by "do not top post here" Google, or any other search engine, will tell you (hint- compare

Re: [FFmpeg-user] hls playlist got wiped out when ffmpeg runs as systemd child process

2022-07-08 Thread Reindl Harald
Am 08.07.22 um 12:24 schrieb jb: I have a control program which running as a systemd service. This program spawns ffmpeg and that is writing to a HLS playlist. I use this flags:    -hls_flags append_list+delete_segments+omit_endlist+program_date_time The interesting thing is, when I stop

[FFmpeg-user] hls playlist got wiped out when ffmpeg runs as systemd child process

2022-07-08 Thread jb
Hello everybody, I have a control program which running as a systemd service. This program spawns ffmpeg and that is writing to a HLS playlist. I use this flags: -hls_flags append_list+delete_segments+omit_endlist+program_date_time The interesting thing is, when I stop the systemd

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Naveen.B
[image: image.png] Attaching the screenshot of the console and the complete command, I did not understand what you mean by "do not top post here" On Fri, Jul 8, 2022 at 12:18 PM Bouke / Videotoolshed < bo...@videotoolshed.com> wrote: > Please provide full command and console output, and do

Re: [FFmpeg-user] Raw video conversion

2022-07-08 Thread Bouke / Videotoolshed
Please provide full command and console output, and do NOT top post here! > > I have a raw video file captured from the monochrome camera, I need to > convert the raw video file to visualise it in .avi or .mp4. > I tried this command, but this did not worked out to me, > ffmpeg -f rawvideo

[FFmpeg-user] Raw video conversion

2022-07-08 Thread Naveen.B
Hello, I have a raw video file captured from the monochrome camera, I need to convert the raw video file to visualise it in .avi or .mp4. I tried this command, but this did not worked out to me, ffmpeg -f rawvideo -pixel_format yuv420p -video_size 1600x1300 -framerate 30 -i raw_video.raw

Re: [FFmpeg-user] How come after update, it takes so longer, many more process

2022-07-08 Thread Bouke / Videotoolshed
> On 8 Jul 2022, at 04:23, Budi wrote: > > $ ffmpeg -i "b.mp4" -to 0:2:20 a.mp4 > > > used to do it nicely done in few seconds FFmpeg -i "b.mp4" -to 0:2:20 -c: copy a.mp4 Mind the codec copy. If you omit that, FFmpeg will transcode, resulting in speed and quality loss. Bouke