Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
42 views

I need to be able to rotate a video in Flutter without re-encoding it. In Flutter I’m using the ffmpeg_kit_flutter_new 4.1.0 plugin, and for the rotation I’m trying the following command: ffmpeg -i ...
Keickd's user avatar
  • 1
-2 votes
0 answers
45 views

I'm working on integrating a remote library of video templates into a React application. The templates are fetched from an external service (example: https://www.invitoai.com) and returned as JSON ...
Hamza Jadoon's user avatar
0 votes
0 answers
42 views

I am developing an Android app similar to Yacine TV that streams video content using a WebView. However, on some devices running Android 12 and 13, the video player shows a black screen while the ...
Ethan Parker's user avatar
-5 votes
0 answers
71 views

I'm working on a screen sharing app, and I have an incoming 1920x1080px video stream via WebRTC. My problem is that when I resize the browser, the video becomes really blurry as the browser is ...
Daniel's user avatar
  • 53
-2 votes
0 answers
78 views

I'm working on a video processing feature in my application where user upload a video with that flow: Call my API for uploading a video Generate a video thumbnail Create an overlay video on top video ...
Tiên Hưng's user avatar
Tooling
0 votes
5 replies
111 views

I'm trying to overlay two videos in React Native, similar to golf training apps where you compare swings by showing both videos at once with adjustable opacity. My goal is to display both videos, ...
Tiên Hưng's user avatar
2 votes
1 answer
92 views

I'm stuck on a really frustrating AVFoundation problem. I'm building a video editor that uses a custom AVVideoCompositor to add effects, and I need the final output to be 60 FPS. So basically, I ...
Zaid's user avatar
  • 451
-2 votes
1 answer
80 views

I am using Javascript to play an HTML5 video when you hover over it, and then pause the video once the mouse exits. The module is working correctly in that sense, except it only works for the first ...
Ben Stewart's user avatar
0 votes
0 answers
71 views

I'm trying to automatically play and loop a slideshow on a website using a file hosted on OneDrive. I first tried embedding the PowerPoint file directly: <iframe src="source.pptx?wdAr=1....
Dr_Sl0th's user avatar
0 votes
0 answers
65 views

I am trying to implement ScreenCaptureKit into my project. I am using macOS 26 for the target version and followed this official project from Apple regarding the ScreenCaptureKit. https://developer....
Zaid's user avatar
  • 451
0 votes
1 answer
119 views

I'm used to working with MediaPipe in Python on a Windows 11 desktop setup. In this environment, if VIDEO mode is selected, MediaPipe automatically reads the video frame count, and the detected frames ...
Félix Yriarte's user avatar
0 votes
0 answers
61 views

Below is my Android code. It is able to download images, document, and videos. Problem: Some platforms like Pexels.com keep their videos as parts or stream how to download them? webView....
Shubham kumar's user avatar
0 votes
1 answer
86 views

I'm working for weeks to get the duration of a video file. I want to use direct api calls. I know, that I can use external command line tools to get it. But I want to avoid the dependencies with these ...
Peter71's user avatar
  • 2,324
0 votes
1 answer
147 views

I’m building a Flutter app where users upload/share videos. I’ve tried the video_compress package, but it’s slow (e.g. >1 minute to compress a 100 MB file). From what I can tell, it doesn’t ...
goofy101's user avatar
1 vote
1 answer
81 views

I have MPEG-2 Transport Stream (M2T) .ts files recorded on an airborne camera platform. They have embedded KLV/MISB metadata that I would like exported to a CSV. When I ran the command: exiftool '/...
Drew M.'s user avatar
  • 13
1 vote
1 answer
113 views

I am using the video_player package in Flutter to play hls streams (m3u8). I am using GCORE as a video streaming provider. Here is the basic part of my code: late final VideoPlayerController ...
Apri's user avatar
  • 1,635
0 votes
0 answers
77 views

I’m using WordPress and created a container with a video background, but I’m facing an issue: when I open it on my phone, the background video doesn’t play, and instead a play button appears on top of ...
Gebraiel Malak's user avatar
1 vote
0 answers
354 views

I am using this library https://github.com/PierfrancescoSoffritti/android-youtube-player to play some Youtube videos within an Android app. Sometimes some users starts getting ...
anmig's user avatar
  • 43
1 vote
2 answers
169 views

I have the ov7670 and I'm configuring it to read an arucomarker in pure black / white. To do so, I'm having the ov7670 in YUYV mode and I'm only reading the Y bytes' first bit. A 1 indicates white, a ...
Mart's user avatar
  • 544
0 votes
1 answer
97 views

I found this code that allows me to play a YouYube video when I click a custom play button: <div style="position: relative;"> <img src="http://s3.amazonaws.com/content....
joshmrodg's user avatar
  • 595
0 votes
0 answers
68 views

Flutter video_player with viewType: VideoViewType.platformView causes lag when navigating back I am using the video_player package in my Flutter app. My controller is initialized like this: ...
Sachin Chavan's user avatar
1 vote
1 answer
105 views

I am trying to parse this SPS payload to understand the H264 codec better, I am successful for the most part, but having hard time parsing or understanding num_units_in_tick and time_scale details for ...
User's user avatar
  • 29
0 votes
0 answers
114 views

I’m building a React component where I need to play MP4 videos one after another. The next video URL is received from the server only after the current one finishes. The problem: When I update the ...
Gibson's user avatar
  • 100
0 votes
0 answers
80 views

I created a Node.js server which streams a video with subtitles, but the subtitles are not showing when the video is playing. If I visit ..../file.ttv, the file is being served. How can I solve this ...
Bogdan Leitan's user avatar
0 votes
1 answer
153 views

I have two servers: A hosting server running my website and a section for video downloads. A separate IIS server used for storing movies (formats: .mkv and .mp4). I recently added an online player ...
Amir Roox's user avatar
  • 352
0 votes
0 answers
62 views

I’m trying to render a remote video using React Native with Expo. The video works fine on Android, but it doesn't render at all on iOS devices. 🧩 Problem Details The remote video URL I’m using does ...
Shivam Srivastava's user avatar
0 votes
1 answer
111 views

I'm trying to replicate option of command line ffmpeg -timecode in my C/C++ code. For some reasons the tcmd stream is not written to the output file. However the av_dump_format shows it in run time ...
Sailor Jerry's user avatar
5 votes
1 answer
196 views

Why am I unable to speed up videos with MoviePy? There are two versions MultiplySpeed and speedx, but I couldn't get either working. When I use MutiplySpeed below, I receive the error: Exception has ...
Sharks  Charlatans's user avatar
0 votes
1 answer
76 views

I just added this library “flutter_zoom_videosdk: ^2.1.0” mentioned in ZoomVideo SDK docoumentaion. Also Added services in manifest file as mentioned in Docs. I am getting this error when I run app. I ...
amit.flutter's user avatar
  • 1,191
2 votes
1 answer
83 views

I have asked similar question which is unsolved. I am asking again with more information. In my Android app there is a grid view composed of grid items, which can be a video or image. In the ...
Chao Fang's user avatar
1 vote
0 answers
86 views

I'm doing something very similar to this tutorial for using MediaFoundation SinkWriter for encoding video from a set of frames, except that I'm initializing it with MFVideoFormat_H264 to output .mp4 ...
Dave Kouts's user avatar
2 votes
1 answer
157 views

I'm building a video conferencing app using React and Azure Communication Services. I use the VideoStreamRenderer to render video streams for participants. When a participant's video stream changes, ...
suraj karosia's user avatar
1 vote
0 answers
130 views

I'm building a Flutter short video app (like Instagram Reels or TikTok) using BetterPlayer. I want to improve the video playback performance by: Preloading the next 5 and previous 2 videos. When I ...
Mansur Malik's user avatar
0 votes
1 answer
107 views

We have a .vtt file without any line, alignment or positioning information. In Firefox the subtitles are correctly positioned at the bottom of the video. In Chrome and its children they are positioned ...
salbeira's user avatar
  • 2,663
0 votes
1 answer
105 views

I'm working with a Vue 3 component that plays videos using the native tag. I dynamically change the src of the video based on a prop (videoName) and I need to avoid memory leaks. Despite cleaning up ...
Arian B's user avatar
  • 79
0 votes
0 answers
33 views

I am redoing a 10 year old website which sells land plots. I am thinking of a rather large image-banner (scenic foto) which would occupy most of the screen. Now, depending on the internet speed of the ...
Michail Belov's user avatar
0 votes
0 answers
29 views

I'm building a video recording app in Flutter using the CameraAwesome plugin. However, whenever I slide down the notification shade or go to another app, it auto-stops the recording. When I try to ...
ryannmahajan's user avatar
0 votes
0 answers
69 views

Description of the issue When recording a video using expo-camera on Android, the resulting video is not automatically rotated according to the device's orientation. The same code works as expected on ...
Felipe Stabel de Carvalho Schi's user avatar
0 votes
0 answers
63 views

I have made a basic http/1.1 file server, but when i try to fetch a video file, Firefox makes absurd requests: GET /files/som.mp4 HTTP/1.1 Host: localhost:1234 User-Agent: Mozilla/5.0 (X11; Ubuntu; ...
Eyy boss's user avatar
  • 115
0 votes
1 answer
57 views

How to make HTML Player take the 100% Mobile Screen including the camera notch extra ("camera cutout")? Currently the player is not filling the entire space, it's inside the space where the ...
Mikedoo's user avatar
1 vote
0 answers
89 views

I'm trying to make web camera with latency 50-100ms for real-time control purposes. The server is a python script, the client is WebRTC application running in Android Google Chrome, directly connected ...
Vitaliy Tsirkunov's user avatar
0 votes
0 answers
53 views

Is it possible to add mp4 videos to itet 5.5 and let them play upon showing? What I tried: final PdfPCell cell = new PdfPCell(); final Chunk chunk = new Chunk(); chunk.setAnnotation(PdfAnnotation ...
Mani Afschar Yazdi's user avatar
2 votes
1 answer
232 views

I am trying to create an app that will allow somebody to record their video and audio feeds on the browser and play it back to themselves. While recording, I am streaming the video so they can see ...
Finn Formica's user avatar
2 votes
0 answers
103 views

I am currently developing a web application based on React and Next.js, and I use the react-player library to play user-uploaded videos stored on AWS S3. The supported upload video formats are mp4, ...
Lucy's user avatar
  • 81
0 votes
1 answer
270 views

I try to display raw stream from TVheadend in <video> element and cant get it to work in Firefox and Chrome. Also I get same error in https://github.com/4gray/iptvnator IPTV player when I try to ...
marko kraljevic's user avatar
0 votes
1 answer
332 views

i am a developer working on a video editor project and trying to develop a feature that exports videos into capcut. One thing im stuck with i linking the media (lost media). Capcut seems to know where ...
Coni Wright's user avatar
0 votes
0 answers
64 views

With a popular browser (Chromium-based browsers, Firefox, Safari) on mobile platforms (Android, iOS), a web page can capture a video using the device's camera with the following markup: <input type=...
Roger Tawa's user avatar
1 vote
0 answers
62 views

It is working on my screen and some of the testers screen but some of the testers that has smaller screen size it is opening a new link instead of the pop up HTML: <a class="popup-video" ...
Gab's user avatar
  • 35
0 votes
1 answer
139 views

I have a simple web application to display media files (images as well as videos). By default, the application uses part of the screen for controls and the rest for display of the media files. One of ...
FDavidov's user avatar
  • 3,755
0 votes
0 answers
129 views

I'm working on a GStreamer pipeline that muxes H.264 video and KLV metadata into an MPEG-TS stream using mpegtsmux. While this setup functions correctly with GStreamer 1.16.3, I'm encountering issues ...
fodunyan's user avatar

1
2 3 4 5
687