Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
10k views

Programmatically convert a video to FLV

i am currently working on a web application that needs to accept video uploaded by users in any format (.avi, .mov, etc.) and convert them to flv for playing in a flash-based player. Since the site ...
3
votes
8answers
1k views

Transcoding audio and video

What is the best way to transcode audio and video to show on the web? I need to do it programmatically. I'd like to do something like YouTube or Google Video where users can upload whatever ...
1
vote
0answers
32 views

Passing FileInputStream and FileOutputStream to ffmpeg to transcode(using JAVE-Java Audio Video Encoding)

I am trying to transcode a *.mov file into a *.mp4 file using JAVE, which calls ffmpeg. Both input file and output file are in InputStream and OutputStream forms. That means I need to pass ...
1
vote
1answer
20 views

Transcoding from H264 to H264 after upload to an online service results in audio/video sync issues

Our application generates a MOV file which contains a series of static images, each of which has a duration in the video of around half a second. The video has a frame rate of 10fps and is encoded ...
1
vote
3answers
100 views

Can a lexer/parser be used as a transcoder?

I am looking at converting plsql procedures / packages to java classes. I just came across the "ANTLR PL/SQL 11g parser" (link). Still trying to understand what it does and how to use it. Assuming ...
1
vote
0answers
58 views

Best solution to transcode mp3s (lower bitrate) and stream on the fly

I have a large repo of mp3s on my LAMP server (I think it's a Debian VPS now) and currently I use a crude flash based mp3 player that "streams" the mp3s directly from my server. I am implementing an ...
1
vote
0answers
219 views

Transcoding to webm with ffmpeg audio problems

For the past few days, I have been trying to get my lossless .mov video(that has an audio track) to a .webm format. Some info on the video & audio is that the fps is 30. Also the audio track has ...
1
vote
0answers
105 views

FFMPEG Command line for producing video for Tivo S3 and S4 RSS feed functionalty

I have been trying to generate a solid video/audio ffmpeg command line configuration That will produce an HD quality video. The output needs to play on both the Tivo S3 and S4 boxes using the RSS vod ...
1
vote
0answers
164 views

Timestamp on Live video after transcoding from RTSP stream to FLV

I have access to an RTSP stream from an IP camera, and the RTSP packets have video timestamps in the header. If I transcode the video stream to FLV using VLC for the purposes of playing the video on ...
1
vote
3answers
632 views

Real time transcoding of multiple RTMP-Streams

I am very frustrated after talking to many companies doing live-streaming or selling streaming-products and I hope someone could get me to the right direction. Here is my problem: We are ...
1
vote
1answer
121 views

error in one line Xerces program

The following application gives me an access violation on its first line, whats with that? // test.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include ...
1
vote
1answer
907 views

Get empty image when transcoding SVG to PNG

I'm trying to generate an SVG image and then transcode it to PNG using Apache Batik. However, I end up with an empty image and I can't see why. I use the Document from SVGDomImplementation as the ...
0
votes
1answer
20 views

FFMPEG 2 Videos transcoded and side by side in 1 frame?

I have 2 videos: HEADSHOT.MOV and SCREEN.MOV. They are both large files and I am looking to both shrink (size, bitrate, etc) and place these two side by side in the same, very wide, video frame. The ...
0
votes
0answers
37 views

merging video files in to split-screen

I'm taking in video with an online flash applet (such as tokbox, but yet undecided). I need to combine multiple video streams in to one movie with up to four videos arranged together in a square. ...
0
votes
0answers
555 views

Vlc make transcode stable with H264 [closed]

I'm try to transcode live stream from http to helix mobile server. Basics OS - Red Hat 4.4.4-13 vlc version 1.1.7 x264 0.114.x FFmpeg version 0.6.1 But with all my tries all i got is nothing. I use ...
0
votes
1answer
155 views

Merge AVI files with partial sound tracks

I need to merge two AVI files where sound tracks are substantially shorter than video ones - i.e. it can be minutes of video without sound at the end. When I merge either with transcode or mencoder, ...
0
votes
1answer
126 views

Looking to build a video serving web application

I want to build an application that will allow the user to upload a movie file, then allow the user to give information about the movie (like synopsis, title, etc.) so that he or she can watch it from ...
0
votes
1answer
285 views

On-the-fly video streaming over http?

I'm building an application that will serve up video files to users on a variety of different platforms. As such, I need the ability to set up a server that will serve up video files that might need ...
0
votes
2answers
957 views

Using ffmpeg with audio in a video

I am using ffmpeg to convert one video format to another: "ffmpeg -ac 1 -i vid1.mp4 -sameq vid1.avi" And I am getting the error: "encoding 6 channel(s) is not allowed in mp2" Now I understand what ...