Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (105)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (15714)

  • How can FFmpeg support the segment_size option ?

    19 avril 2023, par Donething

    This option is used to limit the size of the file segment.

    


    ChatGPT said that this option is available from version 4.1 (released in November 2018), but the compiled version I downloaded from the official website does not have this option.

    


    Then I wanted to compile it myself. After Git clone the source code, I added segment support according to the configuration ChatGPT said and then compiled and installed it.

    


    However, there was still no such option.

    


    ./configure --enable-gpl --enable-libx264 --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx265 --enable-libaom --enable-version3 --enable-libfdk-aac --enable-nonfree --enable-muxer=segment


    


    Does FFmpeg have this option ? ? ?

    


  • Certain FFmpeg dll files don't seem to be installed or a are missing

    10 septembre 2023, par Señor Tonto

    I got the installation form the BtnB github repo linked in the official ffmpeg website, the shared version. On aunch my app calls for these .dll files which don't seem to be present in my installation. Though I can find .def files with their names for some reason, just not the .dll files. The names are : avcodec-60.dll, avutil-58.dll, avformat-60.dll & swscale-7.dll I wonder why these files aren't included in the folder I got. Maybe a faulty installation ? Here's where I got my FFmpeg installation : https://github.com/BtbN/FFmpeg-Builds/releases Also,
I've got no idea why the .dlls aren't installed. spmething must've gone wrong.

    


  • How can i add cover image on mp3 file using ffmpeg ?

    30 juillet 2012, par user1562502

    I'm trying to convert audio file to mp3 and I want to add cover image into mp3 file.
    I tried this :

    ffmpeg.exe -i "input audio file" -i image.png out.mp3

    When conversion completes there is no cover image into mp3.
    I tried and this which is from the official documentation of ffmpeg. The result is the same mp3 file without cover image.

    ffmpeg -i input.mp3 -i cover.png -c copy -metadata:s:v title="Album cover"-metadata:s:v comment="Cover (Front)" out.mp3

    Thank you in advance !