Tagged Questions

6
votes
3answers
2k views

HTML5 <audio>/<video> and live transcoding with FFMPEG

So from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML <audio> or <video> tag. Easy enough right? The conversion would need to take place in ...
4
votes
6answers
790 views

What transcoding services can people recommend?

A client of mine needs to accept a bunch of different video files and convert them to FLV. My experience with FFMEG on a previous project has highlighted that there will be some troublesome files. ...
2
votes
2answers
178 views

Is it possible to have nginx stream a file for download that is currently being written to?

So I have 2 services running, one transcodes a file in realtime (ffmpeg), and another exposes it through http (nginx). The problem I currently have is that when ffmpeg begins transcoding, and I access ...
2
votes
1answer
509 views

ffmpeg to transcode streaming video and storage

Examples of ffmpeg that I've seen so far all seem to accept a file on disk storage as input, to transcode it into another file in disk storage as output. Also i've come accross ffserver which can be ...
2
votes
1answer
207 views

Can't Stream Ogg From ffmpeg Through stdout

To get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents: ffmpeg -i test.wav -f ogg -acodec ...
2
votes
4answers
2k views

Programmatically transcode MPEG-2 videos

I need to be able to programmatically transcode mpeg-2 files to .mp4, .mp3, .wmv, .rm (optional), and .flv (optional), and hopefully generate a thumbnail as well. I found the Java Media Framework, but ...
1
vote
2answers
595 views

How to stream and transcode media files using java (on Tomcat)?

This has been discussed before here. Using Java, I have developed my web services on Tomcat for a media library. I want to add a functionality for streaming media while dynamically transcoding them as ...
1
vote
1answer
252 views

Dump last frame of video file using ffmpeg/mencoder/transcode et. al

I'd like to grab the last frame in a video (.mpg, .avi, whatever) and dump it into an image file (.jpg, .png, whatever). Toolchain is a modern Linux command-line, so things like mencoder, transcode, ...
1
vote
3answers
596 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 ...
0
votes
0answers
10 views

How to salvage a gigantic, possibly corrupt, AIFF file?

Due to a Sound Track Pro glitch, I have a problematic AIF file. It plays fine in QuickTime Player, and is about 1 hour 50 mins long. However: It's 3.81GB in size, whereas (I believe) AIF files are ...
0
votes
0answers
19 views

how to encode videos for the web and mobile phones using ffmpeg

I'm running a website where users can upload their videos and they are all trancoded to the same format (mp4 a.t.m.). Up until now I've been using zencoder (transcoding as a service). But I want to ...
0
votes
1answer
270 views

FFMPEG - Scale video filter not providing expected results

Apologies if this question has been asked. I couldn't find it, but if it has, please let me know and I'll close this out. I'm attempting a simple scale of a video whose original dimensions are ...
0
votes
1answer
415 views

Start ffmpeg transcoding with php

Hey there! I want to restart a live stream by hand via a php script. Everything works fine so far, but the following command causes that the script loads forever and the transcoding isn't working: ...
0
votes
2answers
279 views

When converting .mov to .flv video plays horizontally

When I record a video (.mov) through my iPhone it display vertically which is right. But after converting the .mov to .flv(using ffmpeg) it displays horizontally. My code: function ...
0
votes
1answer
657 views

Missing audio and problems playing FLV video converted from 720p .mov file with FFMPEG

I have some .mov video files recorded from a JVC GC-FM1 HD video camera in 720p mode. I have FFMPEG running on a Linux box that I upload files to for encoding into FLV format. The video appears to be ...
0
votes
3answers
559 views

Progress bar in VB 6.0 from Transcoding process in FFMPEG

firts excuse me for my English it`s super Freak. Sorry I have a big problem , i need finish my applicatión in VB6.0 for a test in my High Schooll and i can`t find the solution, My app open a ...
0
votes
1answer
2k views

FFmpeg Images to Video and Streaming

I've a C# program generating JPEG images in realtime, i need to (continuously) generate a video from the images and stream it (also in realtime). I've used ffmpeg to transcode an input video source ...