Questions tagged [video]
Video is an electronic medium for the recording, copying, and broadcasting of moving visual images. Use this tag for posts in which the code works with videos.
71 questions
16
votes
1
answer
7k
views
Streaming H264 video from PiCamera to a JavaFX ImageView
I'm currently working on a robotics application where a video feed is being displayed from a Raspberry Pi 3.
I've been working on a way to stream the video directly into JavaFX (the rest of the UI is ...
12
votes
3
answers
3k
views
Huffman decoding for video
I've been trying to implement a fast Huffman decoder in order to encode/decode video. However, I'm barely able to decode a 1080p50 video using my decoder. On the other hand, there are lots of codecs ...
10
votes
1
answer
2k
views
Converting MP3 albums into MP4 videos for YouTube
This is a quick script that helps me to convert MP3 files from my CDs into videos I can upload on YouTube. It is intended for personal use, so no input error checks. I am creating a silent video using ...
9
votes
2
answers
4k
views
Bare-bones C# MJPEG stream decoder implementation
I tried to prove to myself that MJPEG stream decoding can be accomplished using bare-bones .NET.
So I wrote a class that decode MJPEG streams, trying to keep tips in mind:
No allocation, except the ...
9
votes
1
answer
2k
views
Creating an iPad-style video frame with CSS and without images
In an effort to reduce the images being used on the page, I've manipulated box-shading, etc. to make a "vector" looking monitor/ipad look.
This is great and all, gets the job done, however, seems ...
8
votes
4
answers
3k
views
Screen recorder producing huge AVI files
I'm currently trying to make a screen recorder in C#, and so far it works but the problem is that something as simple as a 20second video will take about 1GB of space. I have it setup so a timer ...
8
votes
2
answers
214
views
Streaming scheduled TV shows according to a CSV playlist
I'm very new to Python, and I've made a small program/script that will allow me to stream specific files at a given time.
My idea is that I have a .csv file for each day, with one row for each movie/...
7
votes
2
answers
2k
views
Optimizing the performance of html5 video manipulation
I've been working on an html5 canvas video player with a lot of fun little extras and ui toys, the main one being a chroma key (green screen) effect that allows the user to key out different colors or ...
7
votes
2
answers
1k
views
Movie-making script
The purpose of making this code is to copy/paste and run it (and it should run). I'm open to all feedback.
...
7
votes
1
answer
186
views
Displaying a video player to eligible users
I posted this on Stack Overflow, but it was suggested that I move it over to Code Review.
I would like some feedback on the way I decided to clean up code from the in a .NET project that had ...
7
votes
1
answer
2k
views
Optimizing Huffman Decoding
I've been working on implementing a fast Huffman decoder for video decoding. With some help from you, I have been able to produce a decent implementation. However I am still not satisfied with the ...
7
votes
2
answers
863
views
Prototype to add subtitle .srt support to any video element
I've written a JavaScript prototype which extends the video tag with a new function.
...
6
votes
1
answer
410
views
Design a native video buffer in C++ to be shown on android application and shared with other modules in native space and Java
I'm working on a design for a video buffer in C++ that will be used by many consumers both in the native library space(C++) as well as Java side using JNI. My Idea is the following:
Have a buffer ...
6
votes
1
answer
634
views
Display text on video screen
The code displays a video that will play a video and then display some text on the screen at specific locations on the video screen.
The code works but I would like to see if I could change ...
6
votes
1
answer
227
views
Aligning out-of-sync subtitles
This is my 2nd program I wrote on my own, a pretty simple program consisting of two functions (those functions are not combined in any way yet though). The first function moves the display times of ...