Questions tagged [ogg]

Ogg is free and open bitstream container format designed for streaming and manipulation of audio, video, and other media.

Ogg is a free, open standard container format maintained by the Xiph.Org Foundation. The creators of the Ogg format state that it is unrestricted by software patents and is designed to provide for efficient streaming and manipulation of high quality digital multimedia. -Wikipedia

508 questions
11
votes
1 answer

Are there any specific requirements to enable "fast-start" progressive download with webm and ogg codecs?

I know that with mp4, the moov atom must be placed at the beginning of the file to enable progressive downloading. That can be done by enabling "faststart" when creating the file. I'm curious if there are any similar requirements when dealing with…
stefmikhail
  • 6,877
  • 13
  • 47
  • 61
10
votes
4 answers

Audio format where silence would not affect file size

I'm looking for an audio format where a silence of a couple of hours at the beginning does not affect the overall file size. Has anyone any idea which one to use and what settings I have to use? I tried m4a, ogg and mp3 so far with no luck. An audio…
Benjamin Paap
  • 2,744
  • 2
  • 21
  • 33
10
votes
4 answers

Playing small sounds in Java game

For the computer game I'm making, I obviously want to play sound. So far, I've been using AudioClip to play WAV files. While this approach works fine, the WAV files tend to be gigantic. A few seconds of sound end up being hundreds of kB. I'm faced…
Zarkonnen
  • 22,200
  • 14
  • 65
  • 81
10
votes
3 answers

Getting the length of a ogg track from s3 without downloading the whole file

How do I get the play length of an ogg file without downloading the whole file? I know this is possible because both the HTML5 tag and VLC can show the entire play length immediately after loading the URL, without downloading the entire file. Is…
priestc
  • 33,060
  • 24
  • 83
  • 117
9
votes
1 answer

how to replace audio track in mkv file (on Ubuntu 11.10)

I have a mkv file with webm video and ogg audio an ogg audio file I want to replace the audio in the mkv file with the audio from the ogg file. How can I do that on Ubuntu 11.10 with programs available from default repositories? The resulting file…
didi_X8
  • 5,018
  • 10
  • 42
  • 46
9
votes
4 answers

How to save MediaRecorder stream to OGG file in PHP? Including Metadata

I am providing audio recording to my users within the browser, using Javascript: navigator.mediaDevices.getUserMedia(media.gUM).then(_stream => { stream = _stream; recorder = new MediaRecorder(stream); recorder.ondataavailable = e => …
Avatar
  • 14,622
  • 9
  • 119
  • 198
9
votes
1 answer

Firefox loads and plays same .ogv file twice concurrently when with 'autoplay'

I have an ogg vorbis file set up with the HTML5
tomek
  • 758
  • 1
  • 8
  • 12
9
votes
2 answers

How to create silent .ogg audio file

In answer to the question "How-to make a silent mp3 or wav-file" on ubuntuforums.org FakeOutdoorsman provided the following recipe: Another method by using FFmpeg. 60 seconds of silent audio in WAV: ffmpeg -ar 48000 -t 60 -f s16le -acodec pcm_s16le…
James Newton
  • 6,623
  • 8
  • 49
  • 113
8
votes
2 answers

Telegram Bot API: voice message audio spectrogram is missing. A bug?

I'm developing a Telegram bot and I have a question about sendvoice API to send voice (audio) messages. I push a OGG file converting from a MP3 source file, using ffmpeg for conversion, with the command: $ ffmpeg -loglevel panic -i \ …
Giorgio Robino
  • 2,148
  • 6
  • 38
  • 59
8
votes
3 answers

SoX doesn't work with Opus Audio files

I am recording input microphone from a web page with WebRTC and process it through SoX. Problem is, Firefox recordings are in Opus Audio format (according to VLC media informations), in an Ogg container, and SoX doesn't like it : /opt/local/bin/sox…
ryancey
  • 1,037
  • 2
  • 11
  • 27
8
votes
1 answer

How do you do true streaming with the video tag (i.e. not progressive download)? (html5)

I have cheap Apache PHP hosting. I have a mp4 and or Ogg video file. I want to dynamically stream this video to users. And let those users see it through HTML 5 video player. How do you do true streaming (being able to scroll to any part of the…
Rella
  • 65,003
  • 109
  • 363
  • 636
7
votes
3 answers

can not play ogg on android

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…
ihucos
  • 1,821
  • 3
  • 19
  • 30
7
votes
2 answers

OGG Vorbis in iPhone sdk

I want to know if it's possible to play Ogg Vorbis audio file with iPhone SDK or if exist a library or a framework that allow this. I've read something about OpenAL but I don't find any tutorial... Can anyone help me??
DigitalBrain_DEV
  • 1,093
  • 13
  • 27
7
votes
2 answers

How to convert an MP3 file to an Ogg Opus file?

Is there a converter that can convert MP3 files to Ogg Opus? Can you recommend one that can do it? So far I've tried Adobe Audition, Xilisoft Audio Converter Pro, WinAVI Video Converter, and Aimersoft Video Converter Pro. None of them was useful.
kamiar
  • 87
  • 1
  • 1
  • 3
7
votes
1 answer

streaming audio with html5 `

I am trying to stream audio on a site hosted by Dreamhost from a lecture series using the
1
2
3
33 34