Re: [FFmpeg-user] Changing the value of the parameters while encoding ?

2019-03-08 Thread Sai Balaji
Follow up On Thu, Mar 7, 2019 at 5:34 PM Sai Balaji wrote: > Hello, > > I am new to FFmpeg and this community. For my institution project, I am > using FFmpeg to create MPEG Dash segments from my laptop camera for live > streaming. > > As a part of my project, I would like to change some

Re: [FFmpeg-user] "USB Capture SDI 4k"

2019-03-08 Thread Carl Zwanzig
(fixed the subject line) On 3/8/2019 4:53 PM, Louis Letourneau wrote: ffmpeg version 3.4.2 Copyright (c) 2000-2018 the FFmpeg developers Please try with a current build, that's way too old. z! ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

[FFmpeg-user] (no subject)

2019-03-08 Thread Louis Letourneau
Has anyone managed to capture a feed using the "USB Capture SDI 4k" from Magewell with ffmpeg? It runs for awhile but then a 0 byte packet comes along and ffmped just stops. It doesn't quit, but the frame number just stops and it doesn't do anything after rhis. I saw 2 bugs from 2014 and both

Re: [FFmpeg-user] Problem with -vf fillborders on 16 bit image

2019-03-08 Thread Ulf Zibis
Am 09.03.19 um 00:18 schrieb Paul B Mahol: > On 3/8/19, Ulf Zibis wrote: > > > tiff is encoded with alpha, which is not initially available. Filter > is working fine. I do not really understand this argumentation, but this is not my main interest. It like to try some tweaks with fillborders

Re: [FFmpeg-user] Problem with -vf fillborders on 16 bit image

2019-03-08 Thread Paul B Mahol
On 3/8/19, Ulf Zibis wrote: > Hi, > > I do some experiences with 16 bit input and I discover a colour problem > (see attached screenshot). > The input image is from https://samples.ffmpeg.org/image-samples/ > > Here is what I did: > $ ./ffmpeg -i debug/flower-separated-contig-16.tif -vf >

Re: [FFmpeg-user] Question about aresample option "matrix_encoding"

2019-03-08 Thread Carl Eugen Hoyos
2019-03-08 19:13 GMT+01:00, Bernd Butscheidt via ffmpeg-user : > Thank you, I didn't notice that this has been discussed just recently. > We have to add -ac 2 or use > > -af aresample=matrix_encoding=dplii:out_channel_layout=stereo As said there, the quality may be acceptable for you but it is

Re: [FFmpeg-user] Question about aresample option "matrix_encoding"

2019-03-08 Thread Bernd Butscheidt via ffmpeg-user
From: Moritz Barsnick To: FFmpeg user discussions Sent: Friday, March 8, 2019 12:02 AM Subject: Re: [FFmpeg-user] Question about aresample option "matrix_encoding" Hi Bernd, On Thu, Mar 07, 2019 at 21:19:04 +, FFmpeg user discussions wrote: > using the

Re: [FFmpeg-user] Sample with more than 8 bit per plane

2019-03-08 Thread Carl Eugen Hoyos
2019-03-08 17:47 GMT+01:00, Ulf Zibis : > I'm looking for a sample picture with more than 8 bit per plane, e.g. 16 > bit per plane preferably with YUV colours. > Is there something like here? : https://samples.ffmpeg.org/image-samples/ I don't remember a sample with these exact specifications

[FFmpeg-user] Sample with more than 8 bit per plane

2019-03-08 Thread Ulf Zibis
Hi, I'm looking for a sample picture with more than 8 bit per plane, e.g. 16 bit per plane preferably with YUV colours. Is there something like here? : https://samples.ffmpeg.org/image-samples/ Or alternatively if I create one by myself, which format should I use? Thanks, -Ulf -- Von meinem

Re: [FFmpeg-user] Changing start number in segment name - ffmpeg mpeg dash encoder

2019-03-08 Thread Sai Balaji
ffmpeg -f avfoundation -video_size 800x600 -framerate 30 -i 0 -vcodec libx264 -x264-params keyint=30:scenecut=0 -acodec aac -b:v 1M -b:a 192k -f dash -use_template 0 -use_timeline 1 -single_file 0 -streaming 1 -start_number 10 -seg_duration 1 sai.mpd This is the command which I use for

Re: [FFmpeg-user] Changing start number in segment name - ffmpeg mpeg dash encoder

2019-03-08 Thread DopeLabs
looks like you can specify if you use webm_dash_manifest.. check the manpage > On Mar 8, 2019, at 12:05 57AM, 韦林 wrote: > > it seems ffmpeg had hardcode starting from 1. > you could modify source code file 'libavformat/dashenc.c’ in function > dash_init, member ‘segment_index' of OutputStream.

Re: [FFmpeg-user] Changing start number in segment name - ffmpeg mpeg dash encoder

2019-03-08 Thread 韦林
it seems ffmpeg had hardcode starting from 1. you could modify source code file 'libavformat/dashenc.c’ in function dash_init, member ‘segment_index' of OutputStream. i’m not sure which unexpected result would be raised up. > 在 2019年3月8日,下午2:27,Sai Balaji 写道: > > Hi, I'm trying to implement