Works in Google but in the latest version of FF it defaults to Flash. Also won't play on andriod at all. Video files are mp4
thanks
Firefox can't play MP4, so Flash fallback has to be used. Include a webm or ogv source if you want to avoid Flash on Firefox.
MP4 on Android should be fine. Can you give some code/a link?
Related
Hello I have a problem with videojs player,
I have mp4 videos on one file server and mp4 video on my main server.
When I start some video and video is on my main server the loading is ok, but if I try to start a video that is on file server, video doesn't start.
The patch is correct.
with flowplayer works fine, have you some ideas to fix this problem?
Sorry, my ffmpeg patch was wrong, I usend ffmpeg installed with: yum install ffmpeg instead of /bin/ffmpeg installed manually
I change ffmpeg's url in my script and now works fine!
Trying to make it work mediaelement.js with .wav files on IE and Safari. It's working fine in FF and Chrome. In IE and Safari the player is shown but there is no playback.
Internet Explorer's AUDIO tag doesn't support .WAV; you must use MP3, or, if you have Google's OGG codec installed, OGG.
Has anyone played an ogg stream from iOS? What can I use without having to write my own decoder?
I'm using Apple's AVPlayer to play the stream.
This question has been asked as part of this thread:
iOS online radio streaming questions but it hasn't been answered.
There is no built-in support for playing ogg files in iOS, however, the source code for ogg compression/decompression is readily available (from xiph.com). It is fairly straightforward to compile this code for iOS and use it in an app.
I had a chance to compile the libraries and have made them available: "Precompiled Ogg Vorbis Libraries for iOS".
I have also made some sample source code available on GitHub that shows how to play decoded Ogg Vorbis audio on iOS: IDZAQAudioPlayer
.ogg file may also be encoded in Opus or FLAC, refer to Ogg wiki. IDZAQAudioPlayer may not cover all cases.
For Opus codec, you may refer Telegram for iPhone source code: https://telegram.org/apps
Use the VLCKit – ibvlc bindings for macOS, iOS, iPadOS and tvOS in Objective-C.
It's a library from the well-known media player "VLC Media Player," and it supports Cocoapods and can play/stream .ogg files on iOS seamlessly.
pod 'MobileVLCKit'
Check out this blog post for a more detailed tutorial.
Can we play mp4 songs using NAudio?
Please provide some code to play mp4 songs
I need a c# code that will help me play mp4 songs
You can play .mp4 files using NAudio, there is a demo in the official page.
Donwload the Demo-Apps and look for the "Media Foundation Demo". The C# code of the demo can be found at the Source Code of NAudio.
Link to Demo-Apps
Link to Source Code
The implementation is in the WasapiOutGuiThread class:
WasapiOutGuiThread : IWavePlayer
Update: NAudio can now play MP4 files using the MediaFoundationReader assuming you have the appropriate codecs installed. This works on Windows Vista and above, and if you are running Windows Server you may need to have the "Desktop Experience" installed.
Alternative approaches would be to see if the WPF Media Element can play it, or using the Windows Media Player ActiveX control (on an OS that can play MP4s).
I am using mono 2.10.4 and monobjc. I want to be able to play H264 video file and an mp3 file. Monotouch has examples of playing the same on their web site(http://wiki.ios.xamarin.com/HowTo/Video/HowTo%3a_Playback_a_Video.).
But can the same be accomplished using mono and monobjc ?. What would be the libraries that I would need ?.
There is a sample application named QTKitPlayer that demonstrate how to play a movie by using the QuickTime API; it is part of the Monobjc distribution.