Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

13
votes
1answer
935 views

FFMPEG with hardware codec support

I have built a simple media player using ffmpeg on Android 2.2. Hardware is an arm cortex-a8 based 1GHz processor, 512 MB RAM. I am getting low performance, around 15 FPS for 800x600 mp4 video. I have ...
10
votes
5answers
2k views

Python library to modify MP3 audio without transcoding

I am looking for some general advice about the mp3 format before I start a small project to make sure I am not on a wild-goose chase. My understanding of the internals of the mp3 format is minimal. ...
9
votes
2answers
2k views

H.264 Streaming Requirements

I am looking for more information about the minimum requirements needed for a visitor to successfully stream a 1 Mbps 640x360 H.264-encoded video. I know that the user needs the latest Flash 9 ...
7
votes
2answers
248 views

Adding other video codecs / DVD support to JavaFX 2.0

Background I've been using VLCJ thus far for playing video in my application. It works, but if possible I'd like to see if I can achieve a similar level of support for common codecs by migrating to ...
7
votes
1answer
432 views

Playback 24bit audio not possible

I'm trying to play a 24bit audio file with my AutoHotkey app. It just uses SoundPlay. Windows 7 has no problem, however Windows XP users cannot play the 24bit files. The documentation says: All ...
7
votes
2answers
1k views

Why does mp4 video plays fine on iPad, not on iPhone?

I'm quite stumped on this issue. I have a large library of H.264 mp4 video files that I need to have play on iOS. Originally, I was targeting only iPad, but requirements have changed and now I need ...
6
votes
3answers
1k views

How do I create a custom media player to play a custom codec in Android?

n00b here (first Android project). I have been given a custom video codec that has been integrated with an Android firmware build. It's an .so file containing a class that inherits from ...
6
votes
5answers
422 views

What to do with the incompatibilities in HTML 5 audio across browsers?

I need to use HTML 5 audio to play sounds. However, the codec support is very irritating: Firefox: Ogg, Wav Safari: Mp3, Wav Chrome: Ogg, Mp3 Opera: Wav I basically need to encode in Wav and ...
5
votes
3answers
202 views

G.711 c++ implementation

Can you advise a G.711 audio codec implementation in C/C++ ? I am going to use it in a proprietary software.
5
votes
3answers
2k views

How do I write raw binary data in Python?

I've got a Python program that stores and writes data to a file. The data is raw binary data, stored internally as str. I'm writing it out through a utf-8 codec. However, I get UnicodeDecodeError: ...
5
votes
8answers
3k views

Free/Open h.264 video decoding libraries? (Non-GPL)

The main players seem to be x264, and xvid, and both are GPL. This means we can't integrate decoding capabilities into a playback application without licensing the whole thing as GPL, so we can't use ...
5
votes
3answers
4k views

Turn image sequence into video with transparency

I've got what seems like it should be a really simple problem, but it's proving much harder than I expected. Here's the issue: I've got a fairly large image sequence consisting of numbered frames ...
5
votes
5answers
2k views

Programmatically convert G729 audio to WAV PCM

I have G729 encoded audio files. I need to programmatically convert them to WAV PCM (16bit 8kHz mono) in the flow of a tool that is doing other thing too. I have an executable that will do that for ...
4
votes
2answers
270 views

Is there a good open codec for screencast compression

Video captured from computer screens can be compressed very well by codecs that are optimised for screen video. Generally, this means taking into account that large areas of the screen don't change ...
4
votes
1answer
1k views

H264 encoder in android?

I've been having some problems while trying to fix a simple video recording app*. I think I followed the sequence of steps correctly. The following is a simplification of the part of the code that is ...
4
votes
1answer
99 views

Opening a file in text mode can lead to data loss in Python: why?

The documentation for codecs.open() mentions that Files are always opened in binary mode, even if no binary mode was specified. This is done to avoid data loss due to encodings using 8-bit values. ...
4
votes
3answers
462 views

Print to UTF-8 encoded file, with platform-dependent newlines?

In Python, what is the best way to write to a UTF-8 encoded file with platform-dependent newlines? the solution would ideally work quite transparently in a program that does a lot of printing in ...
4
votes
1answer
415 views

Troubleshooting “AudioQueueObject::IONodeConnection::_AcquireHardwareCodec: failed ('hwiu')” when playing sound file

[Error]: 21:46:56.148 [AudioQueueServer] AudioQueueObject::IONodeConnection::_AcquireHardwareCodec: failed ('hwiu') That's an error I am getting when playing a sound file. Is this a codec issue ...
4
votes
5answers
602 views

HTML5 video codec support

What codecs will be supported with the HTML5 video tag? Will it vary by browser, or is there a spec of specific codec that will be supported?
4
votes
1answer
399 views

How to develop a video player that receives video stream on wi-fi broadcasting/multicasting?

general video players connect the media server through unicast but I need a player to receive media stream using multicast/broadcast. scenario: Media Server ---> AP --(multicast/broadcast video ...
4
votes
3answers
697 views

.NET GDI+ image size - file codec limitations

Is there a limit on the size of image that can be encoded using the image file codecs available from .NET? I'm trying to encode images > 4GB in size, but it simply does not work (or does not work ...
4
votes
1answer
5k views

Android AudioRecord and AudioTrack codec options?

I currently use the AudioTrack and AudioRecord classes in Android. I use the pure PCM data but I was wondering what my options are for other codecs? From this page it seems I can only encode and ...
3
votes
2answers
67 views

What's the best way to determine decoding method of a unicode string in python

I was wondering how to determine the encoding of a unicode. I know I've read about this somewhere, I just don't remember if it was possible or not but I want to believe there was a way. Let's say I ...
3
votes
1answer
219 views

How can I get codec information for a quicktime video in Objective C/Cocoa? (Without FFMPEG)

Hello and thanks for your time, I am creating an application that moves video files around to be processed by other applications. In the past, I have used mediainfo, and ffmpeg, in ruby to obtain ...
3
votes
1answer
92 views

Silverlight Supported Codecs

Here is a list of codecs that are supported by Silverlight MediaElement control. Question: Do I need to install these codecs on the client machine Or They are natively supported by Silverlight? ...
3
votes
1answer
104 views

Video encoder licensing for commercial software

I'm writing a small commercial application that outputs user-generated video. I need to encode the video and have spent the last few days looking at: xvid (GPL) divx (commercial license) Theora ...
3
votes
1answer
106 views

Most portable video codec for the web?

I am looking for a method to embed videos in web pages without using a plugin like Flash or Silverlight. Ideally, I would be able to <embed src="movie.ext"> and expect this to work in most ...
3
votes
1answer
1k views

Adding video codec to Android

Can someone please explain the steps I need to take in order to add a new codec to Android? Also, I would like the codec to be installed as part of an application installation (or first launch) and ...
3
votes
1answer
302 views

How to efficiently display custom video stream in OpenGL?

I have a custom library that can decode to RGBA or any other format. What is the best way to marry it with OpenGL to decode onto texture so that it won't drop frames ? Or is there a better way ...
3
votes
1answer
705 views

Force MATLAB mmreader or avireader to use a different codec?

How do I force MATLAB functions to use a different codec when I need to play an AVI file? I am using windows7 and I find that indeo5 codec is not working properly because of the OS. All code works ...
3
votes
2answers
701 views

Hardware accelerated audio decoding with OpenAL

Is it possible to use the iPhone's hardware accelerated decoding of mp3s and AAC when using the OpenAL library? I suppose there are two possible approaches if this is possible. iPhone specific OpenAL ...
3
votes
2answers
587 views

Python line file iteration and strange characters

I have a huge gzipped text file which I need to read, line by line. I go with the following: for i, line in enumerate(codecs.getreader('utf-8')(gzip.open('file.gz'))): print i, line At some ...
3
votes
6answers
653 views

Which Audio Codec should I use?

Which audio codec should I choose for my C# software development project where the raw audio to be transcoded/transported/used is based on the following: For encoding Speech only Audio can be stereo ...
3
votes
5answers
2k views

What is a good lossless video codec?

I often have to write up specs for video conversion for some of the video production houses that my company's clients work with. Unfortunately, I am a programmer first and "video-guy" on the side, so ...
3
votes
3answers
2k views

Where can I find a free/opensource Delphi multimedia component?

I was in a project where I must be able to play almost audio/video files (format). The requirements: Video: .dat (vcd & svcd) .vob (dvd) .rmvb (real media) .mp4 (mpeg4/x264/h264) .wmv/.asf ...
3
votes
6answers
1k views

mpeg 2 decoding

I want to understand how video and audio decoding works, specially the timing synchronization (how to get 30fps video, how to couple that with audio, etc.). I don't want to know ALL the details, just ...
3
votes
5answers
2k views

How can I get the original capture timestamp from my home movie files:: AVI and MPG4?

I have over a TB of home movies with horrible file names. Finding what you want is impossible. I would like to rename all files to the time they were originally recorded (not the file time they were ...
3
votes
3answers
2k views

Best way to enumerate all available video codecs on Windows?

I'm looking for a good way to enumerate all the Video codecs on a Windows XP/Vista machine. I need present the user with a set of video codecs, including the compressors and decompressors. The ...
2
votes
0answers
20 views

How can I add new codecs for matlab?

Is there any way to load new codecs for matlab? It only supports basic codecs and filters. I need to use uncompperessed videos in matlab
2
votes
0answers
51 views

FFmpeg fourcc Avi codec support list?

A couple of similar questions are on stackoverflow, but I haven't been able to figure this exact problem out. I want to get a list of the fourccs for the avi codecs that FFMpeg can decode. I know ...
2
votes
0answers
48 views

WMA decoding with ffmpeg failed

I have problem in decoding WMA/WMAPRO stream with ffmpeg.i have filled extra data from the coming stream.I am able to get bit rate, sample rate, extradata size and other parameters so there is no ...
2
votes
2answers
168 views

Check the bandwidth rate in Android

We have an option to check the network connection types in android ( whether it is 3G , edge or gprs) . I need to check the the bandwidth rate .I need to initaite a call.. For that i need to check ...
2
votes
0answers
89 views

Muxing an AVI with PyMedia

I am trying to generate an AVI with PyMedia by muxing together an audio and video stream. However, I can't find any examples on the web, and can't even get a simple example with a single MPEG2 video ...
2
votes
0answers
402 views

how to encode/decode speex with AudioQueue in ios

If anyone have some experience that encode/decode speex audio format with AudioQueue? I have tried to implement it by editing the SpeakHere sample. But not success! From the apple API document, ...
2
votes
3answers
154 views

A lossless audio codec for embedded devices

I want to transmit a stereo audio stream with 48K rate (which corresponds to 768 Kbit per channel at 16-bit samples) via a radio channel, and feed it to a DAC using a Cortex-M3 microcontroller. While ...
2
votes
2answers
171 views

What do double parentheses mean in a function call? e.g. func(stuff)(stuff)?

Original title: "Help me understand this weird Python idiom? sys.stdout = codecs.getwriter('utf-8')(sys.stdout)" I use this idiom all the time to print a bunch of content to standard out in ...
2
votes
6answers
294 views

Binary serialization protocol

I have a requirement where i need to transfer information through the wire(binary over tcp) between 2 applications. One is in Java and the other in C++. I need a protocol implementation to transfer ...
2
votes
1answer
142 views

Is the leading structure in MP3 file a real frame?

I'm now doing some work with decoding MP3 files, but just have some basic knowledge about the MP3 file. I implement a simple decoder for MP3 these days. When comparing the decoded result with that of ...
2
votes
0answers
35 views

MPEG-4/WAV container for quick A/V sync tweaking

Which container formats support an MPEG-4 video with a WAV audio stream? I'm looking for a format which is supported by most players. Is there a such format which would allow to adjust the A/V sync ...
2
votes
1answer
213 views

Does there exist any android api that returns mediafile bitrate, framerate etc?

I'm trying to build an android app which generates media file statistics e.g. bitrate for audio & bitrate, frame rate, codec information etc for video. I have been able to create playlist based ...

1 2 3 4 5