Re: [FFmpeg-user] 453 Not Enough Bandwidth Error when streaming from IP camera

2019-10-21 Thread Michael Shaffer
Ok thanks, I didn't realize that was coming from the camera.

On Sun, Oct 20, 2019 at 7:09 PM Carl Eugen Hoyos  wrote:

> Am Mo., 21. Okt. 2019 um 01:03 Uhr schrieb Michael Shaffer
> :
> >
> > I have a Sanyo IP camera that I'm streaming to Youtube via rtsp and
> ffmpeg.
> > The camera is supposed to be capable of 1080p but I can only get it to
> work
> > in 720p mode. When I try 1080p mode ffmpeg gives the following error
> below.
> > If anyone has any ideas I'd really appreciate it.
> >
> > user@user-computer:~$ ffmpeg -rtsp_transport tcp -y -rtbufsize 200M -i
> > "rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1" -c:a copy
> > -c:v copy -f flv 1080test.mp4
> >
> > ffmpeg version N-50401-gdd01947397-static
> https://johnvansickle.com/ffmpeg/
> >  Copyright (c) 2000-2019 the FFmpeg developers
> >   built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
> >   configuration: --enable-gpl --enable-version3 --enable-static
> > --disable-debug --disable-ffplay --disable-indev=sndio
> > --disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r
> > --enable-gnutls --enable-gmp --enable-libgme --enable-gray
> > --enable-libfribidi --enable-libass --enable-libfreetype
> > --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb
> > --enable-libopenjpeg --enable-librubberband --enable-libsoxr
> > --enable-libspeex --enable-libsrt --enable-libvorbis --enable-libopus
> > --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc
> > --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265
> > --enable-libxml2 --enable-libxvid --enable-libzimg
> >   libavutil  56. 35.101 / 56. 35.101
> >   libavcodec 58. 59.102 / 58. 59.102
> >   libavformat58. 33.100 / 58. 33.100
> >   libavdevice58.  9.100 / 58.  9.100
> >   libavfilter 7. 62.101 /  7. 62.101
> >   libswscale  5.  6.100 /  5.  6.100
> >   libswresample   3.  6.100 /  3.  6.100
> >   libpostproc55.  6.100 / 55.  6.100
>
> > [rtsp @ 0xbafb380] method SETUP failed: 453 Not Enough Bandwidth
> > rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1: Server
> > returned 4XX Client Error, but not one of 40{0,1,3,4}
>
> I may be missing something but this is an error that your camera
> returns (FFmpeg only shows the error to you).
>
> Carl Eugen
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] 453 Not Enough Bandwidth Error when streaming from IP camera

2019-10-20 Thread Carl Eugen Hoyos
Am Mo., 21. Okt. 2019 um 01:03 Uhr schrieb Michael Shaffer
:
>
> I have a Sanyo IP camera that I'm streaming to Youtube via rtsp and ffmpeg.
> The camera is supposed to be capable of 1080p but I can only get it to work
> in 720p mode. When I try 1080p mode ffmpeg gives the following error below.
> If anyone has any ideas I'd really appreciate it.
>
> user@user-computer:~$ ffmpeg -rtsp_transport tcp -y -rtbufsize 200M -i
> "rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1" -c:a copy
> -c:v copy -f flv 1080test.mp4
>
> ffmpeg version N-50401-gdd01947397-static https://johnvansickle.com/ffmpeg/
>  Copyright (c) 2000-2019 the FFmpeg developers
>   built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
>   configuration: --enable-gpl --enable-version3 --enable-static
> --disable-debug --disable-ffplay --disable-indev=sndio
> --disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r
> --enable-gnutls --enable-gmp --enable-libgme --enable-gray
> --enable-libfribidi --enable-libass --enable-libfreetype
> --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb
> --enable-libopenjpeg --enable-librubberband --enable-libsoxr
> --enable-libspeex --enable-libsrt --enable-libvorbis --enable-libopus
> --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc
> --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265
> --enable-libxml2 --enable-libxvid --enable-libzimg
>   libavutil  56. 35.101 / 56. 35.101
>   libavcodec 58. 59.102 / 58. 59.102
>   libavformat58. 33.100 / 58. 33.100
>   libavdevice58.  9.100 / 58.  9.100
>   libavfilter 7. 62.101 /  7. 62.101
>   libswscale  5.  6.100 /  5.  6.100
>   libswresample   3.  6.100 /  3.  6.100
>   libpostproc55.  6.100 / 55.  6.100

> [rtsp @ 0xbafb380] method SETUP failed: 453 Not Enough Bandwidth
> rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1: Server
> returned 4XX Client Error, but not one of 40{0,1,3,4}

I may be missing something but this is an error that your camera
returns (FFmpeg only shows the error to you).

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] 453 Not Enough Bandwidth Error when streaming from IP camera

2019-10-20 Thread Michael Shaffer
I have a Sanyo IP camera that I'm streaming to Youtube via rtsp and ffmpeg.
The camera is supposed to be capable of 1080p but I can only get it to work
in 720p mode. When I try 1080p mode ffmpeg gives the following error below.
If anyone has any ideas I'd really appreciate it.

user@user-computer:~$ ffmpeg -rtsp_transport tcp -y -rtbufsize 200M -i
"rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1" -c:a copy
-c:v copy -f flv 1080test.mp4

ffmpeg version N-50401-gdd01947397-static https://johnvansickle.com/ffmpeg/
 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
  configuration: --enable-gpl --enable-version3 --enable-static
--disable-debug --disable-ffplay --disable-indev=sndio
--disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r
--enable-gnutls --enable-gmp --enable-libgme --enable-gray
--enable-libfribidi --enable-libass --enable-libfreetype
--enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb
--enable-libopenjpeg --enable-librubberband --enable-libsoxr
--enable-libspeex --enable-libsrt --enable-libvorbis --enable-libopus
--enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc
--enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265
--enable-libxml2 --enable-libxvid --enable-libzimg
  libavutil  56. 35.101 / 56. 35.101
  libavcodec 58. 59.102 / 58. 59.102
  libavformat58. 33.100 / 58. 33.100
  libavdevice58.  9.100 / 58.  9.100
  libavfilter 7. 62.101 /  7. 62.101
  libswscale  5.  6.100 /  5.  6.100
  libswresample   3.  6.100 /  3.  6.100
  libpostproc55.  6.100 / 55.  6.100
[rtsp @ 0xbafb380] method SETUP failed: 453 Not Enough Bandwidth
rtsp://admin:password@192.168.1.103:554/VideoInput/1/h264/1: Server
returned 4XX Client Error, but not one of 40{0,1,3,4}
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".