[FFmpeg-user] Capturing without break

2017-05-23 Thread LaHu
Hi, I'd like to know if there's a way to go on recording even when the source will disappear for a while? Reason: I plan to record several sources at a time as independent recordings. Source A will become Video A, Source B will become Video B and so on. Source A will be the "master" and the d

Re: [FFmpeg-user] Images to video under Windows

2017-05-23 Thread Wolfgang Hugemann
> e.g. cat *.jpg | ffmpeg -f image2pipe -framerate 25 -i - out.mp4 Does piping really work under Windows? The Windows equivalent to 'cat' would be 'dir /b'. But changing the command line this way creates an error that basically says that the input stream is empty. I couldn't find any example

Re: [FFmpeg-user] Images to video under Windows

2017-05-23 Thread Reindl Harald
Am 23.05.2017 um 10:35 schrieb Wolfgang Hugemann: e.g. cat *.jpg | ffmpeg -f image2pipe -framerate 25 -i - out.mp4 Does piping really work under Windows? The Windows equivalent to 'cat' would be 'dir /b'. But changing the command line this way creates an error that basically says that the

Re: [FFmpeg-user] Images to video under Windows

2017-05-23 Thread Gyan
On Tue, May 23, 2017 at 2:05 PM, Wolfgang Hugemann wrote: > > e.g. cat *.jpg | ffmpeg -f image2pipe -framerate 25 -i - out.mp4 > > Does piping really work under Windows? The Windows equivalent to 'cat' > would be 'dir /b'. But changing the command line this way creates an error > that basically

Re: [FFmpeg-user] upscaling a single DASH segment

2017-05-23 Thread Qian Li
On 2017-05-23 04:09, Steven Liu wrote: 2017-05-22 17:26 GMT+08:00 Qian Li : Hello, I am a newbie of FFmpeg. I am trying to upscale a single video segment (downloaded by a DASH client from a DASH server) to a higher resolution. I tried the copy and scale filters, but both of them gave the fo

[FFmpeg-user] IP camera stream video with audio

2017-05-23 Thread Gabor Alsecz
Dear All, I have 2 types of IP cameras (Bosch Dinion UHD, Samsung PNO9080) and both capable of audio streaming alongside with video when attach MIC to it. On it's own web server showing audio has input signal so should work theoretically. I can grab video but not audio? What should i do here? I op

Re: [FFmpeg-user] upscaling a single DASH segment

2017-05-23 Thread Qian Li
Hello again, The problem is now solved. The previous init.mp4 was corrupted. I tried to re-download it and re-cat the files, then the upscaling returned no errors. Best regards, Qian On 2017-05-23 12:12, Qian Li wrote: On 2017-05-23 04:09, Steven Liu wrote: 2017-05-22 17:26 GMT+08:00 Qian

Re: [FFmpeg-user] Create an AAC stream matching the Core Media Audio packet format / priming etc?

2017-05-23 Thread Christian Ebert
* Mark Burton on Monday, May 22, 2017 at 15:22:34 +0100 > On 15 Apr 2017, at 09:22, Christian Ebert wrote: >> Somewhat counterintuitive, but you never know: >> >> -filter:a aresample=async=1:first_pts=0,asetpts=PTS-STARTPTS+1024 >> >> combined with the -t incantation. > > It seems this issue is

Re: [FFmpeg-user] Images to video under Windows

2017-05-23 Thread Wolfgang Hugemann
> This works for me in the cmd shell on Win7: > type *.jpg | ffmpeg -f image2pipe -i - {encoding options) output.ext > In any case, dir /b produces a listing. cat/type emit the data of the > operands. Thanks. This command line does the job. My problem was that I did not really know what exact

Re: [FFmpeg-user] Images to video under Windows

2017-05-23 Thread Gyan
On Tue, May 23, 2017 at 4:27 PM, Wolfgang Hugemann wrote: > > In regard to the other comment: I knew that Cygwin is an option, but my > main intent is to completely automise standard operations, such that all my > colleagues can perform them without thinking about what happens exactly. > Installi

[FFmpeg-user] Transmitting Sliced-I frames with ffmpeg

2017-05-23 Thread Simon Brown
I have an encoder which gives me the option of generating sliced I frames. These frames have a slice of I frame inserted in each frame, but there is never a full I frame. If I use FFMpeg to rebroadcast the stream to an HLS stream, then it works well when I'm not using sliced I frames, but only tra

Re: [FFmpeg-user] IP camera stream video with audio

2017-05-23 Thread Moritz Barsnick
On Tue, May 23, 2017 at 12:17:33 +0200, Gabor Alsecz wrote: > I can grab video but not audio? What should i do here? > I opened stream - of Bosch - with ffplay like this: > ffplay rtsp://192.168.1.105/rtsp_tunnel Peculiar. This site does say audio is "possible": https://www.ispyconnect.com/man.asp

[FFmpeg-user] Unable to capture audio and video synced

2017-05-23 Thread Leonardo Soares Müller
Hello I am trying to record my computer's screen together with the sound from speakers and (occasionally) microphone. While the record is made successfully, it is problematic: when watching on VLC it is good, but on Kdenlive or YouTube audio and video are out of sync. I am using Xubuntu 16.04.

[FFmpeg-user] ffplay after 20161003 not support subtitle

2017-05-23 Thread Giannis Micros
Win32 Version: ffmpeg-20161006-0212867-win32-static version and before works with ass subtitle , can show video window. After ffmpeg-20161007-c45ba26-win32-static version , can't show video window . Why? ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.

[FFmpeg-user] How to download streaming video with FFmpeg?

2017-05-23 Thread Mirco Buttari
Hi, traying to download streraming video with http://pasty.link/ it fail and suggest me: "Found streaming video, download it with FFmpeg [1]". I download FFmpeg files but now I need instruction, what can i do now? Please let me know Tnx Mirco Con Open 4 Giga a 9 euro/4 sett navighi veloce,

Re: [FFmpeg-user] why doesn't fast seeking work in live hls

2017-05-23 Thread Louis Letourneau
As a follow up, if anyone wants to enable and use fast (index) seeking in HLS videos while they are being transcoded, the secret is to use the -hls_playlist_type event parameter as mentioned in the doc here: https://ffmpeg.org/ffmpeg-all.html#toc-Options-38 This feature was added decembre 2015 s

Re: [FFmpeg-user] ffplay after 20161003 not support subtitle

2017-05-23 Thread Moritz Barsnick
On Tue, May 23, 2017 at 22:10:41 +0300, Giannis Micros wrote: > After ffmpeg-20161007-c45ba26-win32-static version , can't show video > window . > > Why? No error messages, no console output, nothing? In other words: Could you kindly show us your command line and the complete, uncut console outpu

Re: [FFmpeg-user] How to download streaming video with FFmpeg?

2017-05-23 Thread Moritz Barsnick
On Mon, May 22, 2017 at 07:25:14 +0200, Mirco Buttari wrote: > fail and suggest me: "Found streaming video, download it with FFmpeg > [1]". Is that really all it says? Nothing else? No URL? Please give an example. Moritz ___ ffmpeg-user mailing list ff

Re: [FFmpeg-user] ffplay after 20161003 not support subtitle

2017-05-23 Thread Carl Eugen Hoyos
2017-05-23 21:10 GMT+02:00 Giannis Micros : > Win32 Version: > > ffmpeg-20161006-0212867-win32-static version and before works with ass > subtitle , can show video window. > > After ffmpeg-20161007-c45ba26-win32-static version , can't show video > window . Did you compile yourself? If not, this is

Re: [FFmpeg-user] Capturing without break

2017-05-23 Thread Carl Eugen Hoyos
2017-05-23 9:24 GMT+02:00 LaHu : > I'd like to know if there's a way to go on recording even when > the source will disappear for a while? FFmpeg is (a library and) a transcoding tool, the specific recording format "data" is currently broken. Use mplayer -dumpstream or tcpdump or tools/aviocat t

Re: [FFmpeg-user] Unable to capture audio and video synced

2017-05-23 Thread Carl Eugen Hoyos
2017-05-23 19:11 GMT+02:00 Leonardo Soares Müller : > To record speakers and microphone, I use pulse. (If there really is an issue, it is unclear for me from your report:) Please also test alsa if possible. > The command I used to record was: > > env PULSE_LATENCY_MSEC=20 ffmpeg -vaapi_device /de

Re: [FFmpeg-user] Transmitting Sliced-I frames with ffmpeg

2017-05-23 Thread Carl Eugen Hoyos
2017-05-23 13:50 GMT+02:00 Simon Brown : > ~/ffmpeg/ffmpeg -i udp://127.0.0.1:65111 If the issue is reproducible with current FFmpeg git head, please dump the udp stream to a file (with tcpdump or similar) and provide a sample for testing. Carl Eugen

Re: [FFmpeg-user] Unable to capture audio and video synced

2017-05-23 Thread Leonardo Soares Müller
Em 23/05/2017 17:16, Carl Eugen Hoyos escreveu: > 2017-05-23 19:11 GMT+02:00 Leonardo Soares Müller : >> To record speakers and microphone, I use pulse. > (If there really is an issue, it is unclear for me from your report:) > Please also test alsa if possible. While I can record the microphone wit