
Recherche avancée
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (10331)
-
I want to play RTSP IP camera using ffmpeg and exoPlayer in android how to I do this
3 juin 2023, par jcredkingI was tyr
LibVlc
but I get dealy in this and can't record the stream anyone has proper solution for this please provide me

-
Play m3u8 audio streaming in python without saving audio content
3 septembre 2021, par AlexMercerthere is an online radio station and i have a m3u8 url from that like below :


http://example.com/live/playlist.m3u8



I can capture the audio with ffmpeg with this command :


ffmpeg -i "http://example.com/live/playlist.m3u8" -c copy test.aac



I want to play this streaming with in my PyQt app and i don't need to store the content.


But i don't know how to pass the content from ffmpeg to my python app and play that with QMediaPlayer.


-
How to play FFMPEG sound sample with OpenAL ?
22 mars 2016, par AsimI am using FFMPEG to load Audio Video from File. It works with video, but I don’t know how to play audio samples.
Here is my code to get audio samples :
m_AdotimeBase = (int64_t(m_Adocdec_ctx->time_base.num) * AV_TIME_BASE) / int64_t(m_Adocdec_ctx->time_base.den);
if(!m_Adofmt_ctx)
{
//AfxMessageBox(L"m_timeBase");
return FALSE ;
}
int64_t seekAdoTarget = int64_t(m_currFrame) * m_AdotimeBase;
if(av_seek_frame(m_Adofmt_ctx, -1, seekAdoTarget, AVSEEK_FLAG_ANY) < 0)
{
/*CString st;
st.Format(L"%d",m_currFrame);
AfxMessageBox(L"av_seek_frame "+st);*/
m_currFrame = m_totalFrames-1;
return FALSE ;
}
if ((ret = av_read_frame(m_Adofmt_ctx, &packet)) < 0)
return FALSE;
if (packet.stream_index == 0)
{
ret = avcodec_decode_audio4(m_Adocdec_ctx, &in_AdeoFrame, &got_frame, &packet);
if (ret < 0)
{
av_free_packet(&packet);
return FALSE;
}
}My problem is I want to listen that sample using OPENAL.
I would appreciate any tutorials or references on the subject.