summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2002-04-21 16:17:55 (UTC)
committer llornkcor <llornkcor>2002-04-21 16:17:55 (UTC)
commit746afd0d27f33eed5451b54819773cf055858964 (patch) (unidiff)
treef33bf3e485393e41e7a36ffc6710798e7f3e47c3 /core
parent392eb0350465565e2a849ada60e6734be025787b (diff)
downloadopie-746afd0d27f33eed5451b54819773cf055858964.zip
opie-746afd0d27f33eed5451b54819773cf055858964.tar.gz
opie-746afd0d27f33eed5451b54819773cf055858964.tar.bz2
fixed length display for streams
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/mediaplayer.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/mediaplayer.cpp b/core/multimedia/opieplayer/mediaplayer.cpp
index 7ef3e6a..e0c4dba 100644
--- a/core/multimedia/opieplayer/mediaplayer.cpp
+++ b/core/multimedia/opieplayer/mediaplayer.cpp
@@ -114,13 +114,18 @@ void MediaPlayer::setPlaying( bool play ) {
114 QMessageBox::critical( 0, tr( "Error opening file"), tr( "Sorry, an error occured trying to play the file: <i>" ) + currentFile->file() + "</i>" ); 114 QMessageBox::critical( 0, tr( "Error opening file"), tr( "Sorry, an error occured trying to play the file: <i>" ) + currentFile->file() + "</i>" );
115 mediaPlayerState->setPlaying( FALSE ); 115 mediaPlayerState->setPlaying( FALSE );
116 return; 116 return;
117 } 117 }
118 long seconds = loopControl->totalPlaytime(); 118 long seconds = loopControl->totalPlaytime();
119 QString time; time.sprintf("%li:%02i", seconds/60, (int)seconds%60 ); 119 QString time; time.sprintf("%li:%02i", seconds/60, (int)seconds%60 );
120 QString tickerText = tr( " File: " ) + currentFile->name() + tr(", Length: ") + time; 120 QString tickerText;
121 if( currentFile->file().left(4) == "http" )
122 tickerText= tr( " File: " ) + currentFile->name();
123 else
124 tickerText = tr( " File: " ) + currentFile->name() + tr(", Length: ") + time;
125
121 QString fileInfo = mediaPlayerState->curDecoder()->fileInfo(); 126 QString fileInfo = mediaPlayerState->curDecoder()->fileInfo();
122 if ( !fileInfo.isEmpty() ) 127 if ( !fileInfo.isEmpty() )
123 tickerText += ", " + fileInfo; 128 tickerText += ", " + fileInfo;
124 audioUI->setTickerText( tickerText + "." ); 129 audioUI->setTickerText( tickerText + "." );
125 130
126 loopControl->play(); 131 loopControl->play();