Recherche avancée

Médias (91)

Autres articles (110)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Pré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 2011

    Contrairement à 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.h4d35

    I 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 of php.ini and restarts the httpd 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 the extension=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. B

    Bit 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 Dop

    I 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.