
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (110)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (9999)
-
cPanel - does installing modules via easyapache overwrite php.ini ?
22 septembre 2013, par i.h4d35I have a little script in bash which automates the installation of ffmpeg and ffmpeg's php module on a server. At the end of this, it appends
extension=ffmpeg.so
to the end ofphp.ini
and restarts thehttpd
service.My question is, in cPanel servers, say the user installs some other module using easy apache, would that overwrite the
php.ini
file. In which case, how do I make sure that theextension=ffmpeg.so
is always added at the end ?One possible solution I thought of was to have a cron set which periodically checks the php.ini file but that doesn't look like the right solution.
-
How to run multiple threads when one of the threads needs the result from one of the other threads
29 août 2021, par Jaxon. BBit of a confusing question.
What I would like to do is speed up the process of this.


yt_client = SoundHandler.YouTube(search=search)
 download_link_attempt = await yt_client.PlaySongByLink()
 search_url = yt_client.SearchURL()
 source, video_url = await yt_client.GetTopSearchResultAudioSource(search_url)
 yt_info, yt_info_embed = await yt_client.GetYouTubeInformation(video_url)



But on the fourth line I need the variable from the third line.
Same with the fourth and fifth.


I have tried everything I thought of, but can't seem to figure it out.


-
How do I generate a file M3U8 compatible with fmp4 ?
18 janvier 2019, par DopI have a streaming solution that use MPEG-Dash protocol, and I would like to expose the same files on hls for IOS devices.
I read that fmp4 is now compatible with hls, so I thought that this could be done
When I generate may mpd file with this command :
MP4Box -dash 33000 -frag 33000 -out video.mpd -profile dashavc264:onDemand original.mp4#audio original.mp4#video
what I want is to not duplicate files, and use my generated Dash files with a HLS manifest file.