Media or Video splitter Gem - media

Does anybody knows the list of Media Splitter.So that I can tryout. I only know the FFmpeg Media Splitter.
Actually I need a gem and I am using Ruby on Rails.

Related

Android MediaPlayer Internal subtitles

I need to show internal subtitles with android MediaPlayer.
I am playing a .ts stream, subtitles are coming on a seperate stream with DVB sub codec.
Currently working on Android 4.2.2, DVB sub is not supported with native media player.
Any Alternative?
You can take a look at Google's open source video player https://github.com/google/ExoPlayer
They don't have DVB, but you can either add your own parser or if you already have it somewhere, then just plug it to the player.
Otherwise, if you want to do it with MediaPlayer, then you need to keep track of current playback time and display the subtitles on top in a separate view.

Mediaelement.js loading wrong format Ffox (MAC)

I`m using mediaelement.js library to display videos. The issue is that for Firefox 3.6.13 on MAC the library loads the .mp4 version of the video and not the .ogv version (wich when loaded is displayed properly).My video sources are in the standard order : ".mp4", ".webm", ".ogv". Is it possible to make the browser load the .ogv version ?
Under MAC video acts differently whenever you have QuickTime installed. The MAC would default to playing the QuickTime supported video instead of the HTML 5 format that it supports in this case OGG. My suggestion would be to detect platform and to remove the .mp4 source using Modernizr.
if (Modernizr.video.ogg) {
// Remove mp4 source
}
Here is documentation on Modernizr.

Playing mp3 Audio files in WP7

I want to stream an audio from server using windows phone 7
the audio extension is mp3. I have tried Mp3MediaStreamSource class but the problem was that it downloads all the audio then start playing it.
I want to know what is the best way to play audio in WP7 for platform 7.0 ( with buffering -> not waiting until the entire audio file is downloaded.
Thanks in advance
I use Background Audio agent do stream mp3 radio broadcast. Take a look at this tutorial http://msdn.microsoft.com/en-us/library/hh202978(v=VS.92).aspx

How can I demux audio from video playing on HTML browser and mux it back to play

I have a requirement where I could able to demux audio from the video that was being played in the html browser and want to apply some effects to audio and mux back to play the video with this change. Any could point me to the proper sources or examples would be really great help.
Regards
symadept
ffmpeg http://ffmpeg.org/ or gstreamer can be used.

Play audio stream using Cocoa

How can I stream audio from a .pls using cocoa?
Right now I'm trying to use this Xcode project, but it only works with a URL pointing to an actual audio file like .mp3.
Where I can find something to start with?

Resources