Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4574)

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

  • Concatenate multiple .ts files into single mp4 without ffmpeg usage

    30 novembre 2024, par urFate

    How to concatenate multiple .ts files into single mp4 without ffmpeg usage on Java (Android/Kotlin) ?
FFMpeg it's huge library in terms of size for android applications itself and I'm sure there is a way to concatenate ts's without that library.
How to solve this on Java ?

    


    If simply concatenate files via byte-to-byte way in result we will get playable, but not seekable .mp4 file.