bilestyle
Sep 3, 03:25 PM
Sick of applescript programs for video conversion, here's my new Cocoa app written entirely in Objective-C, multithreaded, to encode a variety of movie formats into vcd mpeg1/svcd mpeg2, xvcd, xsvcd, and DVD ready for DVD Studio Pro format.
Digital Schism webpage:
http://homepage.mac.com/digitalschism/choice.html
Download Link:
http://homepage.mac.com/digitalschism/echelon.dmg
There is a variety of different options available for todays media afficianado, we find the format to be trusted by the experts, and that maintains the widest range of compatability is MPEG. (Specifically MPEG-1 and MPEG-2)
It has become clear to us that it isn't as easy as it should be to convert the wide array of available media formats to (S/X)VCD/DVD. In an effort to answer a large demand for a simple to use program that encompasses the large spectrum of options available to the Macintosh platform we are proud to bring you Echelon.
Convert multiple files
Echelon delivers the capability of converting a large queue list of files to a variety of different MPEG based formats (MPEG-1 and MPEG-2). It aims to employ all the complex video tools in one easy to use program.
Limitless customization
In an effort to accomodate your personal needs each file maintains its own individual settings. It is also possible to save your favorite presets for future usage.
Fast, Reliable, Simple
We have put in endless hours of research to only allow conversion methods that will solely yield usable end products. We aim to have a harmonious blend of intuitition and simplicity, the things you have come to expect as a Macintosh user.
Advanced User Features
In an effort to meet the needs of the varied levels of experience within our userbase we have implemented an array of advanced features for each encoder included.
Realtime Preview
In addition to intuitive graphical and textual progress indication, the user has the freedom to view the actual frames of video as they are encoded.
Multiple Effect Filters
From adjusting gamma (to be implemented later), to deinterlacing, to denoising we attempted to supply all the necessary effect filters for any of your desired outcomes.
World friendly
We will be localizing Echelon in multiple languages, and are up to suggestion for any localizations we didn't cover, dont hesitate to contact us with more language suggestions.
Digital Schism webpage:
http://homepage.mac.com/digitalschism/choice.html
Download Link:
http://homepage.mac.com/digitalschism/echelon.dmg
There is a variety of different options available for todays media afficianado, we find the format to be trusted by the experts, and that maintains the widest range of compatability is MPEG. (Specifically MPEG-1 and MPEG-2)
It has become clear to us that it isn't as easy as it should be to convert the wide array of available media formats to (S/X)VCD/DVD. In an effort to answer a large demand for a simple to use program that encompasses the large spectrum of options available to the Macintosh platform we are proud to bring you Echelon.
Convert multiple files
Echelon delivers the capability of converting a large queue list of files to a variety of different MPEG based formats (MPEG-1 and MPEG-2). It aims to employ all the complex video tools in one easy to use program.
Limitless customization
In an effort to accomodate your personal needs each file maintains its own individual settings. It is also possible to save your favorite presets for future usage.
Fast, Reliable, Simple
We have put in endless hours of research to only allow conversion methods that will solely yield usable end products. We aim to have a harmonious blend of intuitition and simplicity, the things you have come to expect as a Macintosh user.
Advanced User Features
In an effort to meet the needs of the varied levels of experience within our userbase we have implemented an array of advanced features for each encoder included.
Realtime Preview
In addition to intuitive graphical and textual progress indication, the user has the freedom to view the actual frames of video as they are encoded.
Multiple Effect Filters
From adjusting gamma (to be implemented later), to deinterlacing, to denoising we attempted to supply all the necessary effect filters for any of your desired outcomes.
World friendly
We will be localizing Echelon in multiple languages, and are up to suggestion for any localizations we didn't cover, dont hesitate to contact us with more language suggestions.
john123
Nov 20, 11:14 PM
Ya'll don't know me ?!?! I don't know any of you !!!
Where are jefhatfield? Spikey? Kela? The old crowd?
Are they all gone for good? Say it isn't so!
Where are jefhatfield? Spikey? Kela? The old crowd?
Are they all gone for good? Say it isn't so!
iShak
Jan 13, 01:01 PM
It's because ITV is a television network
and so there also exist ..
mobitv (television network)
mobiblu (famous Mp3 Player)
and so there also exist ..
mobitv (television network)
mobiblu (famous Mp3 Player)
Apple OC
Apr 30, 10:51 PM
as a rule ... if you are unsure ... do not delete them
more...
nomade
Mar 11, 09:54 AM
For those looking for the same solution here what I found:
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
qevalla
May 4, 02:36 PM
Anyone understand my problem ???
Should I reopen my Iphone and check if the screen stays good in his frames?
More than 100 views and nobody can help me about this problem...:(:(:(
Should I reopen my Iphone and check if the screen stays good in his frames?
More than 100 views and nobody can help me about this problem...:(:(:(
more...
sbddude
May 5, 09:44 AM
http://tinyurl.com/3sjf6h2
aarond12
Jan 10, 05:52 PM
This always confuses me. Why do they call it a newsreader? Why not an RSS reader? This does nothing more than keep track of and read RSS feeds. It's not significantly different/better than the RSS capability built into Safari or Firefox.
Maybe I'm a purist (or a snob), but to me a "newsreader" is an application used to read the newsgroups (the Usenet). Panic's Unison application is a newsreader. It connects to newsgroup servers and allows me to read posts and download attachments.
Am I being too picky?
-Aaron-
Maybe I'm a purist (or a snob), but to me a "newsreader" is an application used to read the newsgroups (the Usenet). Panic's Unison application is a newsreader. It connects to newsgroup servers and allows me to read posts and download attachments.
Am I being too picky?
-Aaron-
more...
rdowns
Feb 8, 03:57 PM
Do you think there was more to it � maybe fowl play was involved?
I would have choked that chicken to death.
I would have choked that chicken to death.
Red Comet
May 25, 01:13 AM
ugh no though i do like him im sorry if its any one other than Seth than fail.
Who's Seth?
Who's Seth?
more...
Natesac
May 3, 09:28 PM
This is something I would love to see via jailbreak or iOS 5. It would be awesome to be able to hand off SMS to the iPad when they are in close proximity.
But I would want this to work with my iPhone's native AT&T SMS and not some other "free" texting service. Those require you to use a new number and it would be near impossible for me to tell all my contacts to start texting a new number but call me on the old number.
But I would want this to work with my iPhone's native AT&T SMS and not some other "free" texting service. Those require you to use a new number and it would be near impossible for me to tell all my contacts to start texting a new number but call me on the old number.
lilcosco08
May 5, 09:21 PM
I was assured by the Verizon rep who activated my phone and added the data, that if I were to upgrade to another 3G smartphone down the line that my unlimited data would be grandfathered, now when it comes to 4G LTE, no I don't get unlimited of that. The only part of my plan they weren't sure would get grandfathered if I upgraded is the 5GB tethering/hotspot allowance.
"For example, a customer purchases an iPhone 4 or a Droid X along with the $29.99 data plan," the representative explained. "This person's contract expires February 10, 2013, but they love their device so much they never come in and purchase another device. They continue to pay us monthly and we continue to bill them for the exact same services. We don't change their plan. Now let's say in 2014, they want a new phone and they come in and purchase a new phone, then they subscribe to whatever service is offered at that time and pay that price."
Read more: http://news.cnet.com/8301-30686_3-20029461-266.html#ixzz1LXEHhhAJ
Now he could be talking about 4g, or 3g. Hopefully 4g
"For example, a customer purchases an iPhone 4 or a Droid X along with the $29.99 data plan," the representative explained. "This person's contract expires February 10, 2013, but they love their device so much they never come in and purchase another device. They continue to pay us monthly and we continue to bill them for the exact same services. We don't change their plan. Now let's say in 2014, they want a new phone and they come in and purchase a new phone, then they subscribe to whatever service is offered at that time and pay that price."
Read more: http://news.cnet.com/8301-30686_3-20029461-266.html#ixzz1LXEHhhAJ
Now he could be talking about 4g, or 3g. Hopefully 4g
more...
snberk103
Aug 3, 03:34 PM
...
As far as more serious concerns, I'm sure the military has contingency defenses in case the system comes crashing down....
Ain't gonna do you any good.... We Canucks are short on beer (it's been a hot summer) and if the power cuts out and what little beer we have left gets warm, we be coming down for yours! So hide your brews... and head for the hills....
Don't trust anyone who is polite, or apologizes for no good reason - they may be spy... and if you hear the word 'eh'... well, it's too late.... you've been infiltrated....
Biggest military in world can't stop 35 million desperate, thirsty, poutine eating, beer drinking, hockey playing.....
wait one ...... wait one...... hold on......
I've just been informed that Molson's has ramped up their production lines.... you're safe.... for now......
:D
As far as more serious concerns, I'm sure the military has contingency defenses in case the system comes crashing down....
Ain't gonna do you any good.... We Canucks are short on beer (it's been a hot summer) and if the power cuts out and what little beer we have left gets warm, we be coming down for yours! So hide your brews... and head for the hills....
Don't trust anyone who is polite, or apologizes for no good reason - they may be spy... and if you hear the word 'eh'... well, it's too late.... you've been infiltrated....
Biggest military in world can't stop 35 million desperate, thirsty, poutine eating, beer drinking, hockey playing.....
wait one ...... wait one...... hold on......
I've just been informed that Molson's has ramped up their production lines.... you're safe.... for now......
:D
blueflame
Dec 16, 07:41 PM
did you see my post about an ipod photo 20 gig, gen 4 perfect condition, in box, never been ever used without the dlo iskin case also comes with an itrip.
http://forums.macrumors.com/showthread.php?p=1978983#post1978983
andreas
http://forums.macrumors.com/showthread.php?p=1978983#post1978983
andreas
more...
yellow
Jan 10, 12:13 PM
Tried it and got a 404.
http://video.google.com/videoplay?docid=6379146923853181774&q=apple+touch
Anyway, there was much buzz about this video a while back and how Apple supposedly held the patents rights on this.
http://video.google.com/videoplay?docid=6379146923853181774&q=apple+touch
Anyway, there was much buzz about this video a while back and how Apple supposedly held the patents rights on this.
eyelikeart
Nov 10, 05:50 PM
Originally posted by job
...without pants... ;) :p
hmm...no way...
first off...the asylum...it was about 35� out when we did it...
second...in DC? I don't think so... ;)
...without pants... ;) :p
hmm...no way...
first off...the asylum...it was about 35� out when we did it...
second...in DC? I don't think so... ;)
more...
Kyotoma
May 2, 12:44 PM
These images look more closely like concept for the next iPod Touch, NOT the next iPhone. Where's the silence switch? Why would it be a curved back? Why the hell would there be a metal back? Where are the Cameras? I'd honestly go Android and never look back in the next iPhone looked like this.
eva01
Dec 6, 04:03 PM
Are you sure your computer isn't saying "Could not load MySpace, Reason: It's for 13 year old losers."? ;)
I'm sorry, I can't stand that site.
woo someone else that hates MySpace, YAY!!!!!
i can't stand that place and too many people i know are on it.
I'm sorry, I can't stand that site.
woo someone else that hates MySpace, YAY!!!!!
i can't stand that place and too many people i know are on it.
digital1
Oct 30, 03:36 PM
Apple lower prices!:cool: I wish....
webznz
Apr 18, 06:14 PM
sorry, basically I'm trying to initiate a connection to my server in application:didFinishLaunchingWithOptions: this is to instantiate my cookie that im using to sync devices to my app, if someone gives out their register code then their device will be bounced off my server when the new device with their reg code syncs... thus not allowing them to make queries to the database.., if there is no response then connection:didFailWithError: will catch the fail error and the action sheet should pop up on the main screen.
Thanks for the hep will have another look at my code with your response in mind.
EDIT:
so found a solution in some sample code refereed from in the reference documentation.
it was as easy as swapping
[actionSheet showInView:[UIApplication mainWindow]]
with
[actionSheet showInView:self.window];
I also realized that i was calling the wrong name for the window as it was initialized as window in my .h file not mainWindow... think i need a nap .. :)
Thanks for the hep will have another look at my code with your response in mind.
EDIT:
so found a solution in some sample code refereed from in the reference documentation.
it was as easy as swapping
[actionSheet showInView:[UIApplication mainWindow]]
with
[actionSheet showInView:self.window];
I also realized that i was calling the wrong name for the window as it was initialized as window in my .h file not mainWindow... think i need a nap .. :)
Hemingray
Sep 17, 07:55 PM
Where are you getting this $500 figure? The Dual gig is $2499 and the dual 1.25 gig is $3299.
I can see your $500 price difference is if you upped the RAM in the dual gig model to 512MB (+$200) and the hard drive to 120 (+$100) to match all the specs of the 1.25 model. Is that what you meant?
For the extra $500 you get basically an extra 250MHz per processor and an extra 1MB of L3 cache. And bragging rights of having the fastest PowerMac until the next revision. But I never personally purchase the highest model available. I would consider waiting until the benchmark results come out against the two models, that would help to determine if the extra $500 is worth it.
I can see your $500 price difference is if you upped the RAM in the dual gig model to 512MB (+$200) and the hard drive to 120 (+$100) to match all the specs of the 1.25 model. Is that what you meant?
For the extra $500 you get basically an extra 250MHz per processor and an extra 1MB of L3 cache. And bragging rights of having the fastest PowerMac until the next revision. But I never personally purchase the highest model available. I would consider waiting until the benchmark results come out against the two models, that would help to determine if the extra $500 is worth it.
sammich
Feb 17, 07:29 PM
Hugh Laurie isn't going to be too happy about this.
garzy
Apr 26, 10:36 PM
Originally posted by bfj
... I stopped by WalMart, and bought one of the 499 HP bundles...
... I stopped by WalMart, and bought one of the 499 HP bundles...
simsaladimbamba
May 6, 03:25 PM
http://store.apple.com/uk/product/MB110Z/A?fnode=MTY1NDA1Mg&mco=MTE0MDIyODA
You may have missed the "wireless" in the thread title: Full size Apple Wireless Keyboard with numberpad?
At least it was worth another resurrection by a newcomer.
You may have missed the "wireless" in the thread title: Full size Apple Wireless Keyboard with numberpad?
At least it was worth another resurrection by a newcomer.
No comments:
Post a Comment