13:02
i want this video trim mulipal like 0.2 sec to 0.5, 0.10sec to 0.14sec and 0.23 to 0.29sec
this video trimed success after i want this trimed 3 video merge and create one video and save that any one can know me how
13:26
I have an IPTV playlist from a provider that allows only one user to connect and watch. I want to restream this playlist through my own server without recording it and in a lightweight manner. I’m using Nginx RTMP, FFmpeg, and Python TCP for the setup, but I keep getting an HTTP 403 error when trying to access the stream.
Here’s a summary of my setup:
Nginx RTMP: Used for streaming.
FFmpeg: Used to handle the video stream.
Python TCP: Trying to handle the connection between my server and the IPTV source.
#!/usr/bin/env python3
import sys
import (...)
08:32
I want to speed up the process of HLS segmentation of .mp4 video. Now, processing a half-hour video can take about 5 minutes, and that is too long.
To do this, I decided to split the video into fragments, process each of them in parallel, and then create an .m3u8 file that will contain a list of .ts files from all the resulting playlists in the correct order.
I used the next commands:
ffmpeg -i original.mp4 -acodec copy -f segment -segment_time 10 -vcodec copy -reset_timestamps 1 -map 0 output_time_%d.mp4
for splitting the original video to .mp4 fragments 10 seconds (...)
03:39
I'm attempting to make video streaming with latency as low as possible at 50ms or lower if possible, assuming that it's streaming over LAN.
The latency is like 200-400ms with the config. I'm not sure what's the problem is.
ffmpeg -init_hw_device d3d11va \\
-filter_complex "ddagrab=0:output_fmt=auto:framerate=60" \\
-c:v av1_amf -usage ultralowlatency -rc 1 -async_depth 1 -g 60 -fps_mode vfr \\
-fflags nobuffer -flags low_delay -strict experimental \\
-sdp_file stream.sdp -f rtp rtp://225.0.0.1:55555
stream.sdp
v=0
o=- 0 0 IN IP4 (...)
03:14
I'm trying to convert a video with alpha channel using FFmpeg, but the transparency information gets lost in the output.
Here is the input video (prores, yuva444p) detail with ffprobe:
Stream #0:1[0x2](und): Video: prores (4444) (ap4h / 0x68347061), yuva444p12le(bt709), 360x480, 73314 kb/s, 60.13 fps, 60 tbr, 600 tbn (default)
Metadata:
creation_time : 2019-05-21T21:23:03.000000Z
handler_name : Core Media Video
vendor_id : appl
encoder : Apple ProRes 4444
And my command is below:
ffmpeg -i alpha_prores.mov -c:v libvpx-vp9 -pix_fmt (...)
00:13
I have a hard requirement of python3.7 for certain libraries (aeneas & afaligner). I've been using the regular opencv-python and ffmpeg libraries in my program and they've been working find.
Recently I wanted to adjust my program to use h264 instead of mpeg4 and ran down a licensing rabbit hole of how opencv-python uses a build of ffmpeg with opengl codecs off to avoid licensing issues. x264 is apparently opengl, and is disabled in the opencv-python library.
In order to solve this issue, I built a custom build of opencv using another custom build of ffmpeg both (...)