ogg

ffmpeg/PHP - Problems converting any video format to ogg - Choppy Video / No Audio - win64

你离开我真会死。 提交于 2019-12-30 10:32:33
问题 Let me first appologize if this is a re-post/similar-post as I did my best to search for a specific solution to my issue within the already created posts on here, and on google, but could not. I am using ffmpeg on localhost on win64 system to create/test video conversion scripts prior to uploading them to the server. I am able to successfully convert to/from mp4/flv/wmv/mov without issue, however, whenever I try to convert to .ogg from any other format, I run into issues. First I tried this:

ffmpeg/PHP - Problems converting any video format to ogg - Choppy Video / No Audio - win64

删除回忆录丶 提交于 2019-12-30 10:32:11
问题 Let me first appologize if this is a re-post/similar-post as I did my best to search for a specific solution to my issue within the already created posts on here, and on google, but could not. I am using ffmpeg on localhost on win64 system to create/test video conversion scripts prior to uploading them to the server. I am able to successfully convert to/from mp4/flv/wmv/mov without issue, however, whenever I try to convert to .ogg from any other format, I run into issues. First I tried this:

How to batch convert mp4 files to ogg with ffmpeg using a bash command or Ruby

我与影子孤独终老i 提交于 2019-12-29 06:59:52
问题 I am running a OSX, don't know tons about video conversions. But I have like 200 videos that are all in mp4 format and won't play in Firefox. I need to convert them to ogg to use the html5 video tag. These files live in a folder structure that makes it hard to do files one at a time. I would like the bash command or Ruby command to go through all child folders and find all .mp4's and convert them. I found one reference of how to do this with Google: http://athmasagar.wordpress.com/2011/05/12

Angular ogv.js audio player controls

耗尽温柔 提交于 2019-12-24 07:28:38
问题 I'm using ogv.js in Angular 8. I want to play ogg audio in my browser (Safari). In the browser, just the audio is being played without any controls (play/pause etc.)? My component ts file has: const ogv = require('ogv'); @ViewChild('ogvContainer', { static: true }) ogvContainer: ElementRef; ogv.OGVLoader.base = '../../assets/js/ogv'; let player = new ogv.OGVPlayer(); this.ogvContainer.nativeElement.appendChild(player); let blob = new Blob([new Uint8Array(decodedData)]); player.src = URL

Android - create waveform of the audio file (OGG) [closed]

[亡魂溺海] 提交于 2019-12-24 04:12:56
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . How can I create a simple waveform of the ogg file (like in RingDroid)? Is there any simple way? I found a source code of RingDroid (https://code.google.com/p/ringdroid/) but it´s not support ogg format. I´m using Android 4.0+. Is there some easy way to do it? Thanks for advice.

can not play ogg on android

狂风中的少年 提交于 2019-12-23 09:59:53
问题 does somenone knows what this means? the ogg is played with phonegap`s Meda, which uses MediaPlayer 05-26 15:41:50.007 1160 3631 E AudioFlinger: no more track names available 05-26 15:41:50.007 1160 3631 E AudioTrack: AudioFlinger could not create track, status: -12 05-26 15:41:50.007 1160 3631 E AudioSink: Unable to create audio track 05-26 15:41:50.007 1160 3631 E VorbisPlayer: mAudioSink open failed thanks! edit: new Media('/android_asset/www/sounds/0.mp3', function() { //alert("playAudio(

Is there a way to tell the file size of an .ogg video before it is fully loaded?

时光总嘲笑我的痴心妄想 提交于 2019-12-22 10:38:04
问题 I know one difference between ogg video and mp4 video is that ogg video doesn't have metadata describing the file size, so when an ogg video is loaded, the controls can't show the time remaining until the file has fully loaded. This can be a problem if the ogg video is more than a few minutes long. Is there a way to get this filesize when the page is requested? (Client-side developer, asking a question that I think has a server-side answer. I welcome suggested edits to this question, if you

HTML5 video formats - compatibility

◇◆丶佛笑我妖孽 提交于 2019-12-22 04:29:06
问题 So, I'm building a website on which users can upload an watch videos. I'm using the standard HTML5 video player ( <video...> <src>... ) Currently, I use multiple sources: MP4, OGG and WEBM, for cross-browser compatibility Due to the fact that maintaining three formats is both CPU intensive (converting) as well as eating away precious disk space, I started searching the need to find out whether it's really needed to support this three formats According to the chart I found on Wikipedia (http:/

Convert wav to ogg on app engine (or in javascript?)

99封情书 提交于 2019-12-22 00:25:56
问题 I've built a little app engine app that lets users upload short recordings. Some of the recordings are done in-browser with https://github.com/mattdiamond/Recorderjs, which creates wav files. To save space, I'd like to convert those to ogg before writing them to the app engine datastore, so that I use less of my outgoing bandwidth when I play the audio recordings back to users. How can I do this? I googled around, and apparently there's a command line tool called oggenc that encodes to ogg --

Playing ogg files in eclipse

廉价感情. 提交于 2019-12-21 20:54:33
问题 So i'm trying to add sound to my pong game, but for some reason i can't seem to get the sounds to play... There are no error messages, meaning the path is correct, but the sounds simply don't play. The following is my code for background music, with all the pong stuff cut out, thanks in advance~ import java.applet.Applet; import java.applet.AudioClip; import java.net.URL; import javax.swing.JApplet; import javax.swing.JPanel; public class pong1 extends JPanel { static AudioClip music; static