Re: [FFmpeg-user] copy hls m3u8 stream with ffmpeg

2016-04-13 Thread 桃源老師
Hello, Moritz-san, > 2016/04/14 1:32A.M. Moritz Barsnick gmx.net> wrote: > > But: I found the difference the two of you were ignoring: I'm using a > recent ffmpeg from git, you are using 3.0.1. I mananged to reproduce > your issue with 3.0.1 (but it sometimes succeeds). I'm having issue with f

Re: [FFmpeg-user] libtheora, libmp3lame, vidstab, libvorbis, and libxvid not found on OS X

2016-04-13 Thread Jim Worrall
> On 2016 Apr 13, at 2:37 AM, Rodrigo Polo wrote: > > Hi, I follow the guide you have here to compile FFmpeg on OS X: > https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX . . . > So the final config command is: > > ./configure \ > --prefix=/usr/local \ > --enable-gpl \ > --enable-nonfree \ >

Re: [FFmpeg-user] copy hls m3u8 stream with ffmpeg

2016-04-13 Thread Phil Turmel
On 04/13/2016 03:40 PM, Alex_Reid wrote: > Get me off this list You might attract the attention of a list maintainer this way, but not likely to be quickly. If you really want to get off the list the quickest, you need to do it yourself. Every mail from this list includes the following link at t

Re: [FFmpeg-user] copy hls m3u8 stream with ffmpeg

2016-04-13 Thread Alex_Reid
Get me off this list About our website, Our registered iSafeSite Is here >>> SaveNaturefree.org mobile version coming soon. <<<>>> P*lease consider the environment before printing this email* Un-Subscribe Reply with *unsub* in the subject line, if you

Re: [FFmpeg-user] Fwd: DVB Subtitles Live transcoding

2016-04-13 Thread Lou
On Wed, Apr 13, 2016, at 07:50 AM, Liam Carter wrote: [...] > This version it doesn't > *ffmpeg version git-2012-01-22-0421b6d Copyright (c) 2000-2012 the FFmpeg Old and unsupported. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/m

[FFmpeg-user] compile ffmpeg for arm

2016-04-13 Thread Alper Kağıtcı
Hi, i have a short question. I want Opencv with ffmpeg support in my build image. How can i get it? Alper KAĞITCI ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user

[FFmpeg-user] libtheora, libmp3lame, vidstab, libvorbis, and libxvid not found on OS X

2016-04-13 Thread Rodrigo Polo
Hi, I follow the guide you have here to compile FFmpeg on OS X: https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX I'm currenlty using the latest OS X and Xcode versions, here is a list of the software installed: OS X El Capitan Version 10.11.4 (15E65) Xcode Version 7.3 (7D175) Homebrew 0.9.9 (

[FFmpeg-user] FFMpeg/FFServer P2P streaming between ubuntu based embedded device and smartphone

2016-04-13 Thread Bogdan Mariesan
Hi, I've been playing for the last couple of days with FFMpeg and FFServer as are considering as a candidate for livestreaming between an embedded device(with an integrated HD camera) and various clients(smartphones). I've managed to achieve this using with the following config for FFServer: HTT

[FFmpeg-user] Fwd: DVB Subtitles Live transcoding

2016-04-13 Thread Liam Carter
Hiya All. We are having issues with DVB Subtitles. This is the command we are using *ffmpeg -i udp://@234.xxx.xxx.xxx:xxx -map 0:0 -map 0:1 -map 0:8 -scodec copy -acodec copy -vcodec copy -f mpegts udp://@234.xxx.xxx.xxx:xxx* This version it works *ffmpeg version 3.0 Copyright (c) 2000-2016 the

Re: [FFmpeg-user] copy hls m3u8 stream with ffmpeg

2016-04-13 Thread Moritz Barsnick
ihd.net/hls/live/221521/nflioslive/2015HackerNow_w99d9_g.m3u8: Invalid data found when processing input * ffmpeg-git-20160413-32bit-static/ffmpeg * [mpegts @ 0xbb438e0] Could not find codec parameters for stream 2 (Unknown: none ([134][0][0][0] / 0x0086)): unknown codec Consider in

Re: [FFmpeg-user] copy hls m3u8 stream with ffmpeg

2016-04-13 Thread 桃源老師
Hello Moritz-san, Sorry for cutting in... > 2016/04/13 3:53 P.M. Moritz Barsnick gmx.net> wrote: > >> Neither work, seems to have just started happening I think its a >> problem with the stream. > > Perhaps the service is having intermittent problems. Or your network? I have one concern. 1

Re: [FFmpeg-user] multiple outputs

2016-04-13 Thread Francois Visagie
> -Original Message- > From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of > Moritz Barsnick > Sent: 13 April 2016 09:58 > To: FFmpeg user discussions > Subject: Re: [FFmpeg-user] multiple outputs > > On Wed, Apr 13, 2016 at 08:57:29 +0300, Francois Visagie wrote: > > Do

Re: [FFmpeg-user] how to use ffmpeg command to view and change ts file video gop size

2016-04-13 Thread Moritz Barsnick
On Wed, Apr 13, 2016 at 09:56:04 +, Ronald Luo wrote: > Can you tell me how to use ffmpeg command to view gop size Since it can be variable, you will have to analyze yourself by counting the distances: $ ffprobe -of default=noprint_wrappers=1 -show_entries frame=key_frame input.file > and c

Re: [FFmpeg-user] Wrong width when decoding h264

2016-04-13 Thread Moritz Barsnick
On Wed, Apr 13, 2016 at 12:30:46 +0300, Chen Fisher wrote: > I'm having a weird problem after compiling ffmpeg release/3.0 from source > > After calling avcodec_open2, the codec context width is 6 and height is > 1280 while the right width should have been 960 [To quote Lou:] Again, FFmpeg librar

[FFmpeg-user] how to use ffmpeg command to view and change ts file video gop size

2016-04-13 Thread Ronald Luo
Hi all I have a ts file , video is 4k, Can you tell me how to use ffmpeg command to view gop size and change ts file video gop size Thanks Ronald ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Re: [FFmpeg-user] Wrong width when decoding h264

2016-04-13 Thread Chen Fisher
width and height of avcodeccontext before calling avcodec_open2 is 0, 1280 (so I guess the problem is somewhere before avcodec_open2?) On Wed, Apr 13, 2016 at 12:30 PM, Chen Fisher wrote: > I'm having a weird problem after compiling ffmpeg release/3.0 from source > > After calling avcodec_open2,

[FFmpeg-user] Wrong width when decoding h264

2016-04-13 Thread Chen Fisher
I'm having a weird problem after compiling ffmpeg release/3.0 from source After calling avcodec_open2, the codec context width is 6 and height is 1280 while the right width should have been 960 Any ideas? Thanks Chen ___ ffmpeg-user mailing list ffmpeg