
Recherche avancée
Autres articles (47)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (5672)
-
QT paly audio by QAudioDevidce can't connect to PulseAudioService
30 mars 2022, par XMingGLike title, i'm trying to use Qt and FFmpeg to play audio. My code like this :


QAudioOutput *audio_output;

 QIODevice *stream_out;

 QAudioFormat audio_fmt;
 audio_fmt.setSampleRate(44100);
 audio_fmt.setChannelCount(2);
 audio_fmt.setSampleSize(16);
 audio_fmt.setCodec("audio/pcm");
 audio_fmt.setByteOrder(QAudioFormat::LittleEndian);
 audio_fmt.setSampleType(QAudioFormat::SignedInt);
 
 QAudioDeviceInfo info = QAudioDeviceInfo::defaultOutputDevice();
 if(!info.isFormatSupported(audio_fmt))
 {
 audio_fmt = info.nearestFormat(audio_fmt);
 }
 
 audio_output = new QAudioOutput(audio_fmt);



When i use QAudioDeviceInfo info = QAudioDeviceInfo::defaultOutputDevice()
i get PulseAudioService : pa_context_connect() failed error.
So how can i fix it ?
By the way, i'm using Ubuntu 16.04 and Qt 5.14.2, and i have add 'mutilmedia' to Qt pro file


I checked my Qt file ,and i have audio dir in plugins, it's not lib problem. Also, i read this post ,but i don't know how to fix it, anybody have idea ? Thank you guys,and my English is bad, wish you can understand what do i say.


-
tcp : Use rw_timeout for setting the connect/listen timeouts
28 février 2015, par Martin Storsjö -
Unable to Connect to GitHub.com For Cloning in ffmpeg installation
22 avril 2015, par UserI am trying to clone the Yasm git repository
Command :-
git clone --depth 1 git://github.com/yasm/yasm.git
,but i am getting the following message when i enter the above command
Error :-
Cloning into 'yasm'...
fatal: unable to connect to github.com:
github.com[0: 192.30.252.131]: errno=Connection timed outI am installing YASM for ffmpeg installation in centos6.x.
FFMPEG installation link : Ffmpeg installation link
Any ideas what the problem is ?
Thanks in advance for any help.