Re: [FFmpeg-user] Using ffprobe or ffmpeg to view atom metadata

2014-09-30 Thread tim nicholson
On 25/09/14 21:05, Steve Smith wrote: Is there a way using ffprobe or ffmpeg to view the atom metadata that is viewable using the AtomicParsley utility? I have a mp4 file that is causing AtomicParsley to crash when I try to pull the metadata. I've opened the file in a hex editor and I can see

Re: [FFmpeg-user] libvo-amrwbenc.so.0: cannot open shared object file

2014-09-30 Thread Moritz Barsnick
On Mon, Sep 29, 2014 at 22:50:38 +0200, Reindl Harald wrote: instead learn to use rpmbuild While I _totally_ advocate this, ffmpeg is the one tool which I don't do this for. I use the rpmfusion repository for various tools, and they tend to depend upon the ffmpeg-libs package or its

Re: [FFmpeg-user] Can I use ffmpeg to combine audio streams in .ts file?

2014-09-30 Thread skyscanner
On Tue, 30 Sep 2014 10:45:37 +0200, barsn...@gmx.net wrote: Since you have already built an understanding of what you want to combine in which way, this page should give you some hints and examples of how to achieve that: https://trac.ffmpeg.org/wiki/AudioChannelManipulation Note that it

Re: [FFmpeg-user] Can I use ffmpeg to combine audio streams in .ts file?

2014-09-30 Thread Anatol
ffmpeg -i SOURCE.mov -i LOGO.png -c:v libx264 -subq 7 -qcomp 0.6 -qmin 10 -qmax 50 -qdiff 4 -bf 16 -coder 1 -refs 6 -x264opts b-pyramid:weightb:mixed-refs:8x8dct:no-fast-pskip=0:nal-hrd=cbr -vprofile high -force_key_frames expr:'gte(t,n_forced*2)' -pix_fmt yuv420p -b:v 550k -s 640x360 -r 29.97 -g

Re: [FFmpeg-user] For HLS, playlist.m3u8 file skips last segment entry

2014-09-30 Thread Claudiu Rad
On 9/30/2014 4:11 PM, ajay parashar wrote: #EXTM3U #EXT-X-VERSION:3 #EXT-X-MEDIA-SEQUENCE:0 #EXT-X-ALLOW-CACHE:YES #EXT-X-TARGETDURATION:17 #EXTINF:15.015000, out000.ts #EXTINF:8.341667, out001.ts #EXTINF:8.341667, out002.ts #EXTINF:8.341667, out003.ts #EXTINF:16.68, out004.ts You should

Re: [FFmpeg-user] Can I use ffmpeg to combine audio streams in .ts file?

2014-09-30 Thread skyscanner
After looking at the page at http://ffmpeg.org/ffmpeg-filters.html#amerge I finally figured out how to get the end result I want, in stereo only, but I have to do it in two passes:   ffmpeg -i original program.ts -c:v copy -map 0:0 -map 0:1 -map_channel 0.1.0 -map_channel 0.1.1 -map 0:2

Re: [FFmpeg-user] vp9 generates frames with strange PTS

2014-09-30 Thread Sagara Wijetunga
Ok, the problem understood. Latest ffmpeg (2.4.1) decodes vp9 video files without any issue which were encoded with old libvpx-1.3.0. Latest ffmpeg (2.4.1) having problems with PTS values for vp9 video files which were encoded with latest libvpx-git. RegardsSagara On Monday, September 29,

Re: [FFmpeg-user] Can I use ffmpeg to combine audio streams in .ts file?

2014-09-30 Thread skyscanner
On Tue, 30 Sep 2014 16:13:20 +0200, barsn...@gmx.net wrote:   See my other response from a few minutes ago: Something like pan=5.1:FL=c0+c4:FR=c1+c5:BL=c4:BR=c5:FC=c7 or whatever you think is correct. You may have to throw in some factors such as 0.5*. :-) Following up on that, this seems to

Re: [FFmpeg-user] Can I use ffmpeg to combine audio streams in .ts file?

2014-09-30 Thread Lou
On Tue, 30 Sep 2014 18:35:53 +0200 skyscan...@gmx.ca wrote: On Tue, 30 Sep 2014 16:13:20 +0200, barsn...@gmx.net wrote:   See my other response from a few minutes ago: Something like pan=5.1:FL=c0+c4:FR=c1+c5:BL=c4:BR=c5:FC=c7 or whatever you think is correct. You may have to throw in

Re: [FFmpeg-user] Modern ffmpeg/libvpx generates incorrect PTS for vp9 when decode

2014-09-30 Thread Carl Eugen Hoyos
Sagara Wijetunga sagarawmw-at-yahoo.com at ffmpeg.org writes: I noted modern ffmpeg/libvpx generates incorrect PTS for vp9 when decode. What about FFmpeg without any external libraries? Carl Eugen ___ ffmpeg-user mailing list

Re: [FFmpeg-user] Attempting to make a preservation copy of a Nokia Cellphone video (frame rate)

2014-09-30 Thread Carl Eugen Hoyos
Dave Rice dave at dericed.com writes: ffmpeg -i C:\\Digital Weekend Videos\\helen\\testing\\nokia1.MOV -threads 0 -acodec pcm_s16le -vcodec ffv1 -level 3 -coder 1 -context 1 -g 1 -slices 24 -slicecrc 1 -vsync 0 -report C:\\Digital Weekend Videos\\helen\\testing\\nokia1_FFV1.MOV Have