I have a problem when developing a livestream system with nginx-rtmp-module . I have consulted some systems, there is a function that when pushing the rtmp stream, the livestream systems can recognize the resolution of the stream -> from there it will encode to hls with the corresponding profiles. For example stream 720p produces hls file with 360p -> 720p , if stream 1080p will produce hls file with 360p -> 1080p . I have tried the ways but no success. So how can I check the resolution and redirect the rtmp stream to the appropriate application for encoding. Looking forward to everyone's advice.
Nginx Rtmp Module - How to check resolution when pushing rtmp stream to server before redirecting stream to another application?
817 Views Asked by bui the vuong At
1
There are 1 best solutions below
Related Questions in NGINX
- Nginx reverse proxy with query parameters not working
- Root path analogue in uWSGI as in Uvicorn
- Keycloak: How to override Welcome Screen redirect behavior (to custom realm, instead of master realn/admin)
- nginx set up reverse proxy from subfolder to a port
- Nginx Not Correctly Redirecting Users To Custom Page
- How to connect to ssh server with domain name
- Nginx configuration file and SSL certificate errors in Docker
- Invalid Host header not being rejected by nginx
- Nginx only caches file endpoints
- How to configure Nginx for a VPS?
- Problem with changing default NGINX 404 error page
- My VPS does not accept HTTPS requests on a port other than 443
- NGINX Configuration Issue with Next.js and Strapi Project
- Openshift nginx proxy_pass not redirecting from current host to another
- Adonis.js in production : ENOENT: no such file or directory, open '/public/assets/.vite/manifest.json'
Related Questions in FFMPEG
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Converting MP3/MP4 to WAV in the Frontend Using ffmpegwasm with Next.js Results in Module Not Found Error
- Get remote MKV file metadata using nodejs
- After using ffmpeg to remove some streams in mkv file, it takes much longer to open the media file in potplayer in Windows
- Implementing trim and fade filters with ffmpeg - MP3
- Merge Azure mp4 blobs via API (Preferred Azure)
- Overlaying frame number with ffmpeg
- Merge (concat) all video file present in '43. DP (Part1)' and put it into '43. DP (Part1)' and give name merged (concat) file to folder name
- I get an error when republishing the image I shot with ros2 run ffmpeg
- libav audio latency / cannot set audio_buffer_size
- An error occurred after encoding with h264_nvenc
- ffmpeg - excerpt from a large video file, preserving its additional streams
- Babel Loader error when using ffmpeg.wasm in CRA react app
- define the input FPS of a stream using ffmpeg-python
- NodeJS stream MKV as MP4 video
Related Questions in HTTP-LIVE-STREAMING
- HLS live stream not play on Google nest hub 1 Gen
- Streamingplatform with Unity, Nodejs and Nextjs
- controlling the speed of the hls play list, generated by ffmpeg
- Unable to embed a local HLS stream into a browser
- Screen Capture API _ Set a specific Screen
- HLS.js get video size from codec
- Why does this m3u8 list cannot be played by shaka player?
- Output varibale is not scalar. Matlab. HDL Coder
- How can I transcode video to HLS version 3 using Google Transcoder?
- WEBVTT into HLS does not work anymore on last iOS version
- HLS (HTTP Live Streaming), m3u8 Url 403 issue, works on extension but not when running locally
- Troubleshooting HLS Streaming Setup in Nginx: 404 (Not Found) Error
- Integrate agora as RTM service for livestreaming/ broadcasting
- AVAssetImageGenerator with Fairplay/DRM
- Converting mp3 to hls with gstreamer
Related Questions in RTMP
- NGINX RTMP - HLS Variants has no video
- How to take advantage of an h264 frame stream to create a video stream, saving processing?
- How to get frame number from FFMPEG RTSP stream
- Encountering issues when attempting to stream RTMP with Jetson Nano using Gstreamer and OpenCV
- How to use Gstreamer to ingress live stream on Azure Media Services using RTMP in a long run?
- Read RTMP stream in flutter
- Real-time streaming of multiple videos from Flask to front-end
- RTMP server with OpenCV (python)
- Stream video using ffmpeg on RTMP server
- GStreamer Mac(OSX) avfvideosrc to RTMP issue (Getting Stuck at Redistribute Latency)
- How to play RTMP stream in android app using media3?
- Run bash file (.sh) in nginx
- Flutter Execution failed for task ':app:checkDebugDuplicateClasses' when using rtmp_broadcaster package
- How to stream video from camera using QT6 and GStreamer
- Transcode webcam blob to RTMP using ffmpeg.wasm
Related Questions in ADAPTIVE-BITRATE
- How to configure adaptive bitrate in VLC-android
- Why isn't the quality option being included in video.js?
- In Dash manifest, how to insert duration into the segmentTemplate or pass the segment duration in segment requests?
- How do I create a constant/min framerate in a webRTC video?
- how to add dynamic urls (s3 presigned url) in dash.mpd file?
- Nginx Rtmp Module - How to check resolution when pushing rtmp stream to server before redirecting stream to another application?
- Disable adaptive HLS streams based on number of current users
- Use FFmpeg to create MPEG-DASH files
- Issues with playing MPEG-DASH MPD file
- Adaptive Bitrate Streaming (ABR)
- Get bitrate estimate with ExoPlayer Android API
- ffmpeg bitrate 10% bigger than requested
- Shaka Player does not adapt bitrate
- One video variant on MPEG DASH generated with AWS MediaConverter
- Exo player 2.8.2 always starts with lo bandwidth stream
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You should do this asynchronously:
When publishing RTMP stream to NGINX, it will use HTTP callback to your Server, then you can start a asynchronouse task to detect the resolution and redirect the stream: