
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (14223)
-
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.


-
FFMPEG - Read Audio File on html player while writing ?
23 février 2018, par Nathan FerreyrollesI have the project to record a streams of french radios and after read files on my website (record every weeks) I have segmented by hours and for 7 days.
But i have 2 questions :
When i play the mp3 file who writing at the time on my website i have a bug like -02:30:33s remain ? What’s wrong for you ?This is my ffmpeg code : ./ffmpeg -y -i http://broadcast.infomaniak.net/radioscoop-bourg-128.mp3 -f segment -strftime 1 -segment_atclocktime 1 -segment_time 3600 -reconnect 1 -reconnect_at_eof 1 -reconnect_delay_max 2 -timeout 200000 -acodec copy /var/www/mysite.fr/public_html/rsbourg/%A/%H.mp3
And i would like to know a code to reconnect the record if i have a problem, because this morning the programm has stopped for nothing reasons ? I use Putty and the programm Screen for record many radios at same time :)
Best regards :)
(sorry for my bad english i’m french :/ )
Nathan -
mpeg2_metadata : Localize inserting of sequence display extensions
20 juin 2019, par Andreas Rheinhardtmpeg2_metadata : Localize inserting of sequence display extensions
If a new sequence display extension had to be added, this was up until
now done at two places : One where a sequence display extension was
initialized with default values and one where the actual sequence
display extension was inserted into the fragment. This division of
labour is unnecessary and pointless ; it has been changed.Furthermore, if a sequence display extension has to be added, the
earlier code set some fields to their default value twice. This has been
changed, too.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>