Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (88)

  • Use, discuss, criticize

    13 avril 2011, par

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9820)

  • Is it allowed to embed the ffmpeg.exe in my project ? [on hold]

    22 juillet 2019, par Snowy White

    I have written a program that, among other things, does some audio format converting. I use a library which in turn uses the ffmpeg.exe for this. So at the moment, the user needs to have ffmpeg in the same directory as the program itself. But what I would prefer is to add ffmpeg to my project as an embedded resource, so that the users don’t need to care about that. And now my question is, as I have seen that ffmpeg is licensed under LGPL, would it be legal to do so ? Or do the users explicitly have to get ffmpeg by themself ?
    Thank you for any answers in advance !

  • How can I convert any video to h264 format ?

    16 janvier, par dark1sider

    I have a video with a specific name which is the date when it is written. I don't really care about the name I want to convert it to this format then delete it. So one video gets in the file I convert it then remove the old one and move the new one to different file. The folder will always be empty or only contains 1 video. I'm using Windows 10.

    



    For example,

    



    ffmpeg -i *.mp4 -an -vcodec libx264 -crf 23 Todifferentfile/output.mp4 


    


  • Batch reduce bitrate and size of mp3 audio files with ffmpeg

    27 mars 2024, par Wes Modes

    I was looking for a way to batch reduce mp3 bitrate on my sizable collection of mp3 files. It was surprising difficult given that this must be a super common thing to want to do.

    



    In fact, there are dozens, maybe hundreds, of posts from people asking how to do it, and dozens of utilities available for varying amounts of money that claim to do just that. Looking around and trying some of the free software, I was surprised that none made the task of batch converting/adjustment easy.

    



    If I wanted to convert a single file, I'm told this is a decent way to do it :

    



    ffmpeg -y -loglevel "error" -i "my_music_file.mp3" -acodec libmp3lame  -ab $BITRATE "my_music_file_new.mp3"


    



    (Though I'd prefer if the file was changed in place and resulted in the same name.)

    



    I need a simple bash script using ffmpeg that will recursively go through my music directory and change the bitrate of my mp3 files.