Displaying 20 results from an estimated 59 matches for "mjr".
Did you mean:
jr
2015 Jul 09
2
mjr to opus audio conversion - corrupted results
Thanks a lot. Well, the problem is that it's hard to find any informaton
about converting *.mjr files. I'll keep trying.
Regards,
Mateusz
2015-07-09 0:57 GMT+02:00 Mark Harris <mark.hsj at gmail.com>:
> Hi Mateusz,
>
> It looks like the Janus code that writes Ogg Opus will not produce
> correct Ogg Opus output when there are packets missing. You can quote
> me or...
2015 Jul 08
2
mjr to opus audio conversion - corrupted results
...r project, and after very long development time we have ecountered a bug
that is a blocker for whole project. After real tests of recording streams
using janus we realized that audio and video are out of sync in recordings,
despite of fact, that live they are perfectly in sync.
Janus records two *.mjr files for each recording - one for video, and one
for audio. Janus also provides own converter to convert this files to
*.webm for video and *.opus for audio. After that, we use ffmpeg to merge
this files. By recording stopwatch view on the stream we concluded, that
video has correct length and spe...
2015 Jul 08
2
mjr to opus audio conversion - corrupted results
Hi Mark,
Well, so do you think that any of this libraries probably won't provide
correct audio conversion? Do you know any other possible solutions for
described problems, ommiting trying to fix on my own any of this libraries
or waiting for fix? Will you mind if I quote you in disscussion I
mentioned? Sorry for asking you so many questions at once.
Regards,
Mateusz
2015-07-08 17:42
2015 Jul 09
0
mjr to opus audio conversion - corrupted results
...the janus-gateway Github page or
otherwise getting support from Meetecho on this, as it looks like the
file format is specific to their software.
On 07/09/2015 04:06 AM, Mateusz Koslacz wrote:
> Thanks a lot. Well, the problem is that it's hard to find any informaton
> about converting *.mjr files. I'll keep trying.
>
> Regards,
>
> Mateusz
>
>
> 2015-07-09 0:57 GMT+02:00 Mark Harris <mark.hsj at gmail.com
> <mailto:mark.hsj at gmail.com>>:
>
> Hi Mateusz,
>
> It looks like the Janus code that writes Ogg Opus will not p...
2015 Jul 08
0
mjr to opus audio conversion - corrupted results
Hi Mateusz,
The Ogg Opus container does not have explicit per-packet timestamps,
and so doesn't allow gaps in the audio. PLC packets may be generated
to replace any packets that were lost or corrupted, as described in
section 4.1 of the specification:
https://tools.ietf.org/html/draft-ietf-codec-oggopus-08#section-4.1
These packets usually consist of just a single TOC byte. It looks
like
2015 Jul 08
0
mjr to opus audio conversion - corrupted results
Hi Mateusz,
It looks like the Janus code that writes Ogg Opus will not produce
correct Ogg Opus output when there are packets missing. You can quote
me or https://tools.ietf.org/html/draft-ietf-codec-oggopus-08#section-4.1
if you wish. If you have another way to convert these files to Ogg
Opus or a way to write the Opus audio to webm instead then that might
be a workaround.
- Mark
2004 Sep 10
3
call quality monitoring
...jitter buffer notices that
packets are discarded because they are too late, when excessive
packets are completely missing, etc.
I've been collecting a giant debug log for a while now, so I could
pretty easily sift through it if there's something good to look for.
Thanks.
--
Matt Ranney - mjr@ranney.com
2003 Nov 07
4
Smoother bandwidth limiting
Skipped content of type multipart/signed-------------- next part --------------
--
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html
2009 Aug 09
0
[LLVMdev] Signals: interpreter vs. JIT
...he glibc library. That's why the signal causes a segfault.
If you're interested in bringing the interpreter up-to-date with the JIT compiler, I would welcome it since JIT compilation isn't supported on all platforms.
--Sam
----- Original Message ----
> From: Matt Renzelmann <mjr at cs.wisc.edu>
> To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
> Sent: Sunday, August 9, 2009 11:23:27 AM
> Subject: [LLVMdev] Signals: interpreter vs. JIT
>
> Just a quick question on LLVM, signals, and the lli interpreter. A sample
> program is included a...
2008 Jul 30
3
Dealing with image PDF's
Guys,
I was just playing around and added a bit of code to omindex.cc so I
could ocr tiff and tif with gocr which seems to work. Here's what it
looks like:
// Tiff:
} else if (startswith(mimetype, "image/tif"))
{
// Inspired by http://mjr.towers.org.uk/comp/sxw2text
string safefile = shell_protect(file);
string cmd = "tifftopnm " + safefile + " | gocr -f UTF8 -";
try {
dump = stdout_to_string(cmd);
} catch (ReadError) {
cout << "\"" << cmd << "...
2008 Jul 30
3
Dealing with image PDF's
Guys,
I was just playing around and added a bit of code to omindex.cc so I
could ocr tiff and tif with gocr which seems to work. Here's what it
looks like:
// Tiff:
} else if (startswith(mimetype, "image/tif"))
{
// Inspired by http://mjr.towers.org.uk/comp/sxw2text
string safefile = shell_protect(file);
string cmd = "tifftopnm " + safefile + " | gocr -f UTF8 -";
try {
dump = stdout_to_string(cmd);
} catch (ReadError) {
cout << "\"" << cmd << "...
2009 Aug 09
2
[LLVMdev] Signals: interpreter vs. JIT
...he glibc library. That's why the signal causes a
segfault.
If you're interested in bringing the interpreter up-to-date with the JIT
compiler, I would welcome it since JIT compilation isn't supported on all
platforms.
--Sam
----- Original Message ----
> From: Matt Renzelmann <mjr at cs.wisc.edu>
> To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
> Sent: Sunday, August 9, 2009 11:23:27 AM
> Subject: [LLVMdev] Signals: interpreter vs. JIT
>
> Just a quick question on LLVM, signals, and the lli interpreter. A sample
> program is included a...
2009 Aug 09
3
[LLVMdev] Signals: interpreter vs. JIT
Just a quick question on LLVM, signals, and the lli interpreter. A sample
program is included at the end. Platform is x86, Linux, 32-bit, GCC 4.2.4.
Does lli -force-interpreter support signals, or is it only the JIT that
does? The following sample program crashes with lli 2.5 and lli
top-of-tree.
Thanks and regards,
Matt
=============================
#include <stdio.h>
#include
2006 Jun 23
2
file sizes greater than 4GB
I have a large VS 6.0 C++ program and I'm running it under WINE under
Redhat Linux.
Everything works fine, but it doesn't handle files sizes greater than
4gb like it can running directly under Windows XP.
I've tweaked everything that I can find that deals with filesizes.
Is there a problem with WINE itself handling very large file sizes?
2001 Jul 03
1
WINE game compatability and "DOSe"?
After using a dual-boot system for a while (Win98 + Mandrake) on my home
machine, I've decided to go for Linux only on my new (well, used)
notebook (Latitude PII 266 w/ 128 MB RAM). In any case, I don't really
use any Windows programs except a few games (well, I use office tools
and programming environments, but there are plenty of good ones in Linux
as is), so I'm looking into using
2001 Sep 01
2
PPPOE and Wine how to config?
Hi all
Does anyone know how to set up internet access when running pppoe?
Regards
Nick
_________________________________________________________________
Downloaden Sie MSN Explorer kostenlos unter http://explorer.msn.de/intl.asp
2004 Sep 20
2
Cisco 76XX - How to ignore a call (silence ring)
I am preparing to setup a system using Cisco 7940 and 7960's I have the
7.1 SIP firmware on them.
One issue I have run into is how to silence the ringer if a call comes
in and you don't want to take it.
Many phones have a DND button. I know the 79XX has the DND in the menu
but it is to cumbersome to go into the settings then phone preferences
then the DND and select yes.
Is there any other
2001 Aug 22
3
bat files
Just a question, should it be possible to run bat files with wine.
Basically the application is java, I know the java will run under windows.
I also know that java will run under linux natively, but I am curious if
this is possible to start under wine.
I get wine: can't exec 'blue.bat': invalid exe file.
2001 Aug 10
4
Guest OS installed in wine?
Hi!
I would like to install Win98SE as a guest operating system on my Linux
Mandrake. Is it possible using wine? If so, how to do it? Shall I leave the
free Win partition that will be used during this installation process, or
maybe it's not necessary? And do you know anything about the possibilities
of windows installed in this way: will all my games and programs run
properly?
Also the sound
1998 Jun 20
0
["Eric S. Raymond" <esr@snark.thyrsus.com>] The Trove project -- next-generation Internet software archiving (fwd)
..., except that they project these feelings onto others. The
sequelae of this neurosis include irrational and dangerous behaviors
such as passing "gun-control" laws and trashing the Constitution.
- --
This article has been digitally signed by the moderator, using PGP.
http://www.iki.fi/mjr/cola-public-key.asc has PGP key for validating signature.
Send submissions for comp.os.linux.announce to: linux-announce@news.ornl.gov
PLEASE remember a short description of the software and the LOCATION.
This group is archived at http://www.iki.fi/mjr/linux/cola.html
=====BEGIN PGP SIGNATURE=====...