Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
212 views

I am using MediaTranscoder with GraphicsCaptureItem to capture screen and record to a compressed video file. I have Radeon 860M (built into Ryzen AI 7 350), that supports hardware encoding of H.264 ...
LOST's user avatar
  • 3,372
0 votes
0 answers
30 views

I wrote a bash script which automates a number of conversion operations on video files using FFmpeg. Oddly enough, the FFmpeg call itself now fails when running the script, with a very confusing error ...
GaboScharff99's user avatar
1 vote
0 answers
74 views

I am new to GStreamer. I have a pipeline that streams a VOD file to an RTMP output. I added a live RTMP stream as a second input and used input-selector to switch between them. However, after ...
venkatesh's user avatar
0 votes
0 answers
52 views

At first I thought maybe the issue is that videos are without audio so I changed the config settings but when ever I upload the video I get internal error Here's the code for reference, is there error ...
Waleed Daud's user avatar
1 vote
0 answers
250 views

I'm not used to working with audio/video streams, so I am not sure how many wrong things I'm doing right now. The intention is to send opus-encoded audio (using 'audio/webm; codecs=opus' from Chrome) ...
Alfchee's user avatar
  • 387
0 votes
1 answer
271 views

I am new to aws media convert. I am trying to convert the video but the final output video becomes double the length from the original one. for example if I have a video 30 seconds long, it will ...
user1hjgjhgjhggjhg's user avatar
0 votes
1 answer
310 views

Processing videos from iphone (15 pro) encoded with h.265: Stream #0:0[0x1](und): Video: hevc (Main 10) (hvc1 / 0x31637668), yuv420p10le(tv, bt2020nc/bt2020/arib-std-b67), 1920x1080, 15043 kb/s, 30 ...
user2524940's user avatar
1 vote
1 answer
562 views

Basically I have the same issue mentioned here: https://repost.aws/questions/QUp6krkiXUSmu6YMln7dnHdw/aws-media-convert-removes-silent-audio-which-causes-the-output-video-to-be-severly-out-of-sync-...
fblundun's user avatar
  • 1,017
1 vote
0 answers
162 views

I am trying to use Google Video Transcoding API from PHP. Following is the environment: google/gax: v1.18.2 google/google/cloud-video-transcoder: v0.8.1 However, I am getting following error message: ...
Achal Gupta's user avatar
-2 votes
1 answer
156 views

I have MJPEG video. I want get VP9 webm video. ffmpeg -loglevel verbose -i "input.yuvj422p" -pix_fmt yuv420p -c:v libvpx-vp9 -crf 20 -b:v 0 constantQualityExample.webm And it works ok (...
user avatar
2 votes
1 answer
5k views

In Vapoursynth, it is convenient to download and use plugins to change the frame rate of videos. However, it seems that using FFmpeg has more limitations (or maybe I haven't found the right method). ...
Ironbox's user avatar
  • 31
1 vote
0 answers
339 views

For a vue.js messaging project, I'm using the wavesurfer.js library to record voice messages. However Google chrome gives me an audio/webm blob and Safari gives me an audio/mp4 blob. I'm trying to ...
Raphael M's user avatar
0 votes
1 answer
762 views

I have setup Keyclock v21.x on Kubernetes along with Infinispan v14.x. In Infinispan, I have created distributed caches named sessions, offlineSessions, offlineClientSessions, actionTokens,...
Neelesh Gurjar's user avatar
0 votes
1 answer
67 views

I'm developing a series of ETL procedures for a migration project using SSIS/DataTool 2010. I have multiple cases where I have to decode source values with new target ones, i.e in Customers addresses ...
gigaale's user avatar
1 vote
1 answer
666 views

I am trying to scale a video from 1080p to 480p. However, whenever I am calling sws_scale_frame() function, I keep getting undefined reference. When I checked the header file, I found that the ...
user avatar
0 votes
0 answers
94 views

for the past year or so the mpeg2_qsv encoder in ffmpeg/libmfx has been broken due to a idr interval problem (sends only one idr frame at the start of the video rather than sending idr frames at a ...
CodeCalf's user avatar
0 votes
0 answers
374 views

I wrote a simple gstreamer pipeline to decode and re-encode h.265 to h.264: avdec_h265 | x264enc. On the same hardware, I found the cpu usage is much less in windows compared to linux. Any idea why ...
zigzag's user avatar
  • 181
0 votes
0 answers
1k views

I have 9 files: FHD001.MOV to FHD009.MOV. They come from 3 recordings: FHD001, FHD002-FHD007 and FHD008-FHD009. Apart from FHD001 and FHD007 all are about 2.3GB each. With ffmpeg I can transcode ...
dnz's user avatar
  • 33
1 vote
1 answer
213 views

I have the following piece of code: using (Stream inputFileStream = File.OpenRead("C:\\Users\\User\\Downloads\\test.txt")) { using (Stream transcodingStream = Encoding....
Vocaloidas's user avatar
2 votes
1 answer
3k views

I've compiled ffmpeg in an Arch Linux distribution with support to Intel Quick Sync Video. But ffmpeg gets stuck when I try to run it: $ ffmpeg -debug -hwaccel qsv -qsv_device /dev/dri/renderD128 -c:v ...
Juliano B. Nequirito's user avatar
0 votes
1 answer
3k views

I use ffmpeg -i my_video.mp4 -vf scale=1024:-1 my_video.avi to encode/transcode a video. Now i would like to do the same thing but start at frame X. How can I do that?
larry's user avatar
  • 344
1 vote
1 answer
4k views

I'm using the latest FFmpeg windows Build (2022-12-02 12:44) from BtbN. I'm trying to encode a video into HEVC codec using hevc_nvenc encoder. But it says [hevc_nvenc @ 00000263983f4280] B frames as ...
ramondq's user avatar
  • 91
1 vote
1 answer
3k views

I have an MP4 file with video and audio. I need to extract the audio stream only to an MP3 file. However it is critical for our application that the timing / synchronization of the audio file is ...
Brendan Hill's user avatar
  • 3,812
2 votes
1 answer
2k views

For a while now I transcode videos to play on a raspberry pi 3 (or 4) but the performance was always really bad. After a long process of trial and error I found a command which works good most of the ...
exa.byte's user avatar
  • 187
0 votes
1 answer
1k views

I want to transcode and down/re-sample the audio for output using ffmpeg's libav*/libswresample - I am using ffmpeg's (4.x) transcode_aac.c and resample_audio.c as reference - but the code produces ...
whatdoido's user avatar
1 vote
0 answers
764 views

Is it possible to transcode an .wav file that uses ICMv audio codec to a .wav or .mp3 file that uses a traditional Codec? I have multiple files that uses ICMv audio codec and I would like to convert ...
Marcos Paulo Júnior's user avatar
4 votes
1 answer
944 views

rpc CreateBook(CreateBookRequest) returns (Book) { option (google.api.http) = { post: "/v1/{parent=publishers/*}/books" body: "book" }; } message CreateBookRequest { ...
Stacy Lin's user avatar
0 votes
1 answer
1k views

I am using nginx with ffmpeg to stream my live stream and i want to reduce the resolution of it, but it plays the video in high quality everytime here's my nginx code events {} rtmp { server { ...
8f7an's user avatar
  • 1
-1 votes
1 answer
344 views

I wish to optimize the process of video transcoding. Exactly I need to get two different video resolutions with the same audio stream options, but now I transcode audio stream twice (as I think ffmpeg ...
youni's user avatar
  • 17
-1 votes
1 answer
1k views

I am using ffprobe to extract information from a video file using following command on AWS VT1 that has hardware accelerated decoders available ffprobe -of json -show_streams -show_frames -...
Mustafa's user avatar
  • 124
0 votes
0 answers
137 views

Now that I added a recording function using RecordRTC with mediasoup, I would like to do away with transcoding during the process. current dataflow : Can I contain the bitstream into a file without ...
esse non videri's user avatar
0 votes
1 answer
332 views

I'm trying to run the Kurento-player tutorial with my DLink local cameras using the Chrome browser as client. The DLink cameras provides RTSP with H.264 encoding; so does Chrome as far as I know. ...
Gary's user avatar
  • 11
0 votes
2 answers
5k views

I'm trying to get audio streaming on an HTML page from an RTSP server. The RTSP server is the rtsp-simple-server running a command line below. ./rtsp-simple-server rtsp-simple-server.yml. The ...
Pierogi's user avatar
  • 361
0 votes
1 answer
434 views

I'm using FFMPEG to transcode a video into different resolutions and it's working fine. But now I want to merge two videos picture in picture, as one video, which then has to be transcoded into ...
Macster's user avatar
  • 81
1 vote
1 answer
360 views

I need to process a list of several audio files (MP3 and WAV) and mix them to generate an audio stream (AAC codec / fltp) to be included into an mp4 file (using the Libav API). Currently, I can mix ...
xtingray's user avatar
  • 503
0 votes
0 answers
428 views

For example how does Facebook, YouTube, Reddit and many countless sites encode videos so fast? Do they all have in-house solutions? Tools like FFMPEG and Handbrake are alot slower to how they process ...
Emir Geçir's user avatar
0 votes
1 answer
1k views

I transcode video (mkv and mp4). When mkv transcoded to mkv, output is fine (output video fps and duration are same as input), but if mkv transcoded to mp4, output fps is less than input 2 times and ...
prostraction's user avatar
1 vote
0 answers
373 views

Is there a way to compute the encoded AVPacket.pts and AVPacket.dts? If the encoded packet doesn't contain a duration? I tried computing it by starting the timestamp at 0, then increase that timestamp ...
Gerald GeraldSe Selvino's user avatar
-1 votes
1 answer
596 views

I want to re-encode the audio streams from mp2 to aac from one udp multicast MPEG TS Stream top another. I have an udp multicast mpeg ts streram with 1 video, 3 audio, and 1 subtitles streams inside. ...
Ivan Totev's user avatar
1 vote
2 answers
336 views

I'm working on an app that streams out multiple presenters via the Agora Live Streaming protocol. Everything works great so long as the person who started the live stream stays connected, however if ...
Alex Vanston's user avatar
1 vote
1 answer
326 views

I am using agora web libraries with Javascript to build an application that has live streaming with a live transcoding feature. Is there any way to style the tiles shown in the Agora Live Transcoding ...
buddhiv's user avatar
  • 718
1 vote
0 answers
163 views

How to transcode HDR to SDR in Windows MediaTranscoder API? Windows provides MediaTranscoder API to transcode video. I am trying to transcode HDR (High Dynamic Range) video into SDR (Standard Dynamic ...
Sazzad Hissain Khan's user avatar
0 votes
0 answers
22 views

I am extracting part of a large video using the following ffmpeg command and it works fine as long as the -ss X position is few seconds: ffmpeg -i "test.mov" -ss 2 -t 3 -vf "scale=...
Razor's user avatar
  • 369
5 votes
1 answer
3k views

I've got a webm file with transparency : https://itype.techforge.com.au/assets/videos/upshot/module1/NP_1A.webm I'm trying to convert it into something that will play in the video element of a web ...
Programming Guy's user avatar
1 vote
0 answers
429 views

I am invoking RTPEngine from OpenSIPS to transcode incoming Opus call to PCMU. I`m passing these parameters to the RTPEngine daemon: codec-mask-opus codec-set-opus/48000/2/32000//maxplaybackrate=32000;...
Mark Allen's user avatar
5 votes
2 answers
6k views

In my Django application, uploaded video files are transcoded into some particular format using ffmpeg. I now need a way to reliably detect whether uploaded videos have alpha channel or not. I ...
Alex Oat's user avatar
  • 121
1 vote
1 answer
286 views

I'm trying to achieve a freeze frame effect by repeating the same input frame for a few seconds while transcoding H264 to H264 video on a Java / Android platform. I modified https://github.com/...
Fritz Mehler's user avatar
1 vote
1 answer
2k views

I'm trying to create a variable HLS MBR live stream using ffmpeg, which will be fully accelerated at the GPU level. This means accelerated decoding, deinterlacing, scaling and encoding. Here is my ...
Milan Čížek's user avatar
1 vote
1 answer
1k views

I already have a working gRPC project working. I'm looking to build an API to be able to do some HTTP requests. I have the following 2 types: message FindRequest { ModelType model_type = 1; oneof ...
TheTisiboth's user avatar
  • 1,701
0 votes
1 answer
430 views

I was studying the ffpresets and avpresets but I stumbled upon something interesting. According to the ffmpeg docs: First ffmpeg searches for a file named codec_name-arg.avpreset in the above-...
Slav's user avatar
  • 376

1
2 3 4 5
8