[FFmpeg-user] remove all I Frames from a video

2017-12-12 Thread KE
hey i would love to cut out all the i frames from a video. and most importantly have NO new i frames added to the output file. i know this will break the video. but thats exactly what i want. what i tried so far: ffmpeg -y -i input.mp4 -filter:v "select='not(eq(pict_type\,PICT_TYPE_I))'" -v:c

[FFmpeg-user] Recording video and audio together with options

2017-12-12 Thread gomi odabaşıoğlu
Hello, I want to record video and audio on Windows. I am using this command now. "C:\Users\gomid_000\Desktop\ffmpeg.exe -f gdigrab -show_region 1 -framerate 60 -video_size cif -i desktop C:\Users\gomid_000\Desktop\out.mp4" Is gdigrab supporting h264 codec and audio recording ? (If that is

[FFmpeg-user] Encoding 4K 60Hz lossless from a capture card

2017-12-12 Thread Alex Pizzi
Windows 10 64-bit Ryzen 7 GTX 1080 32GB RAM Hi all, I'm trying to encode 4K 30/60Hz video in a lossless format from a 4K capture card and everything I've tried gives me a similar error as in the linked image, [real-time buffer too full or near too full frame dropped]

Re: [FFmpeg-user] remove all I Frames from a video

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 17:51 GMT+01:00 KE : > i would love to cut out all the i frames from a video. > and most importantly have NO new i frames added to the output file. > i know this will break the video. but thats exactly what i want. > > what i tried so far: > ffmpeg -y

[FFmpeg-user] Extraction of timebase/frame rate for timecodes of audio files

2017-12-12 Thread Robert Krüger
Hi, is there a way to extract the information about the timebase of a timecode in an audio file, like you can find in the wild e.g. in MXF or in Mov files? I can see that ffmpeg apis and thus ffprobe expose the timecode as a string-valued tag (e.g. TAG:timecode=00:00:00:00) but the information

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 9:25 GMT+01:00 George Andguladze : > Video file itself: https://www.dropbox.com/s/9ccptsuiqk2ntsv/1.zip Thank you for the sample, I opened a ticket for the audio timestamp issue: https://trac.ffmpeg.org/ticket/6910 Does your camera provide different audio

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 10:27 GMT+01:00 George Andguladze : > how would I calculate the correct audio PTS with respect to video stream? It may be possible with setpts. > As for the intermediate audio file, unfortunately I can only request the file > to be delivered to me in this

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread George Andguladze
Thank you for the answer, how would I calculate the correct audio PTS with respect to video stream? As for the intermediate audio file, unfortunately I can only request the file to be delivered to me in this (MPEG-PS, both video and audio streams) format. George A. -Original Message-

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 15:51 GMT+01:00 George Andguladze : Now please stop top-posting, it is rude! Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread George Andguladze
I do use the -t option for the video though. George A. -Original Message- From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of Carl Eugen Hoyos Sent: Tuesday, December 12, 2017 6:48 PM To: FFmpeg user questions Subject: Re: [FFmpeg-user]

[FFmpeg-user] Proxying ffserver behind nginx?

2017-12-12 Thread Alec Taylor
What's the trick to proxying ffserver behind nginx? My attempt: location /stream0 { proxy_pass http://localhost:8086; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 15:17 GMT+01:00 George Andguladze : > I have also posted a question on Stackoverflow and replied with an answer > describing the steps I took to resolve my specific issue. >

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread George Andguladze
My bad, forgot to remove that part, I do not actually use -t for the audio, when merging the two files, ffmpeg does the job of correcting the timestamps itself. George A. -Original Message- From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of Carl Eugen Hoyos Sent:

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread George Andguladze
Yep, I was able to make it work by first producing an intermediate audio file and then merging & converting it with video. Thank you for your help! George A. -Original Message- From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of Carl Eugen Hoyos Sent: Tuesday,

[FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread George Andguladze
Greetings to all, I have a video file acquired from Hikvision's NVR connected to IP cameras. The method used to download this video was Hikvision NVR's internal API that produced a flawed video file in several ways: 1. Duration of the video file is wrong (as seen in Mediainfo or VLC). My

Re: [FFmpeg-user] Problematic Hikvision video file for conversion ffmpeg

2017-12-12 Thread Carl Eugen Hoyos
2017-12-12 9:25 GMT+01:00 George Andguladze : > 2. Audio cannot be played in most media players including VLC. Works mostly fine here with ffplay, to convert you currently have to use an audio-only intermediate file or force audio pts. Carl Eugen