Re: [FFmpeg-user] Regarding video compression

2021-10-22 Thread Carl Zwanzig
On 10/21/2021 11:31 PM, Shailesh kumar Dangi via ffmpeg-user wrote: Can you please reduce the audio bitrate below 128Kbps? Do not top-post on this mailing list. Use a current build of ffmpeg. Include the command output in the _body_ of the email, not as an attachment. ffmpeg can be sensitive t

Re: [FFmpeg-user] Regarding video compression

2021-10-21 Thread Shailesh kumar Dangi via ffmpeg-user
Hi, Can you please reduce the audio bitrate below 128Kbps? On Tue, Oct 5, 2021 at 4:40 PM Michael Koch wrote: > Am 05.10.2021 um 12:55 schrieb Shailesh kumar Dangi via ffmpeg-user: > > Please find an attachment as a command with the console. > > > ffmpeg version 2.8.17-0ubuntu0.1 Copyright (c)

[FFmpeg-user] Regarding video compression

2021-10-21 Thread Shailesh kumar Dangi via ffmpeg-user
Hi Team, I wanted to reduce the bitrate of video is below 5Mbps and the audio bitrate is below 128Kbps. So, I am using the below command and getting output. Can you please guide me to understand the converted bitrate?. "ffmpeg -y -noautorotate -i new.MOV -b:v 4.5M -map_metadata 0:s:0 -c:v libx264

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Michael Koch
Am 05.10.2021 um 12:55 schrieb Shailesh kumar Dangi via ffmpeg-user: Please find an attachment as a command with the console. ffmpeg version 2.8.17-0ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 20160609 Your FFmpeg version i

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Shailesh kumar Dangi via ffmpeg-user
Please find an attachment as a command with the console. On Tue, Oct 5, 2021 at 4:19 PM Michael Koch wrote: > Am 05.10.2021 um 12:39 schrieb Shailesh kumar Dangi via ffmpeg-user: > > Hi, > > > > When I use to stop rotation. -noautorotate. it is working fine in my > local > > system, But when I

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Michael Koch
Am 05.10.2021 um 12:39 schrieb Shailesh kumar Dangi via ffmpeg-user: Hi, When I use to stop rotation. -noautorotate. it is working fine in my local system, But when I upload the code on the Linux server after compression video itself gets to rotate. Original Video- https://maventus-us-east.s3.

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Shailesh kumar Dangi via ffmpeg-user
Hi, When I use to stop rotation. -noautorotate. it is working fine in my local system, But when I upload the code on the Linux server after compression video itself gets to rotate. Original Video- https://maventus-us-east.s3.amazonaws.com/videos/6155981eac83d208.mp4 Compressed Video - https://m

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Shailesh kumar Dangi via ffmpeg-user
Thanks, Michael for helping me. I hope this will work for all video formats. Thank you. On Tue, Oct 5, 2021 at 1:52 PM Michael Koch wrote: > Am 05.10.2021 um 10:18 schrieb Shailesh kumar Dangi via ffmpeg-user: > > Do we have anything to stop rotation? > > Try to add the option -noautorotate > >

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Michael Koch
Am 05.10.2021 um 10:18 schrieb Shailesh kumar Dangi via ffmpeg-user: Do we have anything to stop rotation? Try to add the option -noautorotate Michael ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-use

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Shailesh kumar Dangi via ffmpeg-user
Do we have anything to stop rotation? On Tue, Oct 5, 2021 at 1:43 PM Michael Koch wrote: > Am 05.10.2021 um 09:54 schrieb Shailesh kumar Dangi via ffmpeg-user: > > Hi, > > > > Our final goal is to reduce the bitrate is below 5MB and the Aspect > ratio, > > height, and width need to be the same.

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Michael Koch
Am 05.10.2021 um 09:54 schrieb Shailesh kumar Dangi via ffmpeg-user: Hi, Our final goal is to reduce the bitrate is below 5MB and the Aspect ratio, height, and width need to be the same. The bitrate is already below 5Mb/s, look at the end of the console output: bitrate=3772.4kbits/s Aspect ra

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Shailesh kumar Dangi via ffmpeg-user
Hi, Our final goal is to reduce the bitrate is below 5MB and the Aspect ratio, height, and width need to be the same. Can you please help me with the command? On Tue, Oct 5, 2021 at 12:53 PM Michael Koch wrote: > Am 05.10.2021 um 09:07 schrieb Shailesh kumar Dangi via ffmpeg-user: > > Yes, In

Re: [FFmpeg-user] Regarding video compression

2021-10-05 Thread Michael Koch
Am 05.10.2021 um 09:07 schrieb Shailesh kumar Dangi via ffmpeg-user: Yes, In the input video contains some black space around the video as you can see in the attachment below. If we pass the scale "-vf scale=1920:1080" then the video will be stretched. if we do not pass the scale. The scale will

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Michael Koch
Am 05.10.2021 um 08:33 schrieb Shailesh kumar Dangi via ffmpeg-user: Hi, Please find below as an attachment. In the attachment input command and output, the console is there. Actual Input what i am using ffmpeg -y -i original.mov -b:v 4.5M -map_metadata 0:s:0 -c:v libx264 -preset superfast -tune

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Shailesh kumar Dangi via ffmpeg-user
Hi, Please find below as an attachment. In the attachment input command and output, the console is there. Actual Input what i am using ffmpeg -y -i original.mov -b:v 4.5M -map_metadata 0:s:0 -c:v libx264 -preset superfast -tune film -ac 2 -c:a aac -maxrate 4M -bufsize 3M -strict -2 -f mp4 client.m

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Michael Koch
Am 05.10.2021 um 08:03 schrieb Shailesh kumar Dangi via ffmpeg-user: Thanks, Micheal Here is the command, I am using to reduce the bitrate. ffmpeg -y -i original.MOV -b:v 4.5M -map_metadata 0:s:0 -c:v libx264 -preset superfast -tune film -ac 2 -c:a aac -maxrate 4M -bufsize 3M -strict -2 -vf sca

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Shailesh kumar Dangi via ffmpeg-user
Thanks, Micheal Here is the command, I am using to reduce the bitrate. ffmpeg -y -i original.MOV -b:v 4.5M -map_metadata 0:s:0 -c:v libx264 -preset superfast -tune film -ac 2 -c:a aac -maxrate 4M -bufsize 3M -strict -2 -vf scale=iw:ih -f mp4 output1.mp4 On Tue, Oct 5, 2021 at 11:31 AM Shailesh k

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Shailesh kumar Dangi via ffmpeg-user
Thanks, Archana. I am having a doubt. I want to remove the black area of the video as I mentioned above-left side and right side black area. Does FFMPEG have any command for that? On Tue, Oct 5, 2021 at 11:14 AM Archana Raghupathy wrote: > There is an option in crop command to maintain AR in ou

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Michael Koch
Am 05.10.2021 um 07:27 schrieb Shailesh kumar Dangi via ffmpeg-user: Hi Team, This is Shailesh Kumar Dangi, Working on Maventus Group Inc. I am using FFMPEG for video compression for bitrate reduction and I want to be the same aspect ratio as the original video aspect ratio. I am facing a proble

Re: [FFmpeg-user] Regarding video compression

2021-10-04 Thread Archana Raghupathy
There is an option in crop command to maintain AR in output video. *keep_aspectIf set to 1 will force the output display aspect ratio to be the same of the input, by changing the output sample aspect ratio. It defaults to 0.* https://ffmpeg.org/ffmpeg-all.html#crop On Tue, 5 Oct 2021 at 10:57,

[FFmpeg-user] Regarding video compression

2021-10-04 Thread Shailesh kumar Dangi via ffmpeg-user
Hi Team, This is Shailesh Kumar Dangi, Working on Maventus Group Inc. I am using FFMPEG for video compression for bitrate reduction and I want to be the same aspect ratio as the original video aspect ratio. I am facing a problem with the video. Which is having some black space from the left and ri