Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (45)

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

  • 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, (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (4599)

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

    


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

    18 novembre 2016, 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.

  • Create video from set of images [duplicate]

    10 mars 2018, par Phillip Fotosyntese Jensen

    This question already has an answer here :

    I want to create a video file that is made from all of my Images. I have found my command to do so ffmpeg -framerate 25 -i *.jpg -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p output.mp4
    but I have a really large collection of images so the terminal is hitting me with "bash : /usr/bin/ffmpeg : Argument list too long" . How can I bypass this ?