Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (80)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13026)

  • How to stop ffmpeg from manipulating mp3 metadata ?

    13 septembre 2024, par he rambled

    I'm using ffmpeg to change bitrate of my mp3 files. It works well, but one thing is very frustrating.

    



    ffmpeg automatically changes some of metadata fields. Specifically it converts ID3v2.3 to ID3v2.4, and it does it incorrectly. For example, it writes TYER field that actually does not exist in ID3v2.4. But the most frustrating thing is, it converts USLT field to lyrics-LANGCODE(like lyrics-eng). Most of music players does not recognise this tag !

    



    I don't want ffmpeg to mess up with metadata fields. I just want it to change bitrate. Is there anyway to tell ffmpeg that it should not touch any metadata fields ?

    



    I'm running ffmpeg 4.0.2 in windows 64bit. Options are :

    



    ffmpeg -i input.mp3 -codec:a libmp3lame -b:a 128k output.mp3


    



    And no, -id3v2_version 3 did not help. It corrected TYER problem, but not lyrics problem.

    


  • VBR header created for CBR encoded mp3 when using ffmpeg with lame codec ?

    7 novembre 2012, par user784637

    When I run this command to perform a lossy-to-lossy transcode from a youtube video (audio encoded in either aac or vorbis) to mp3 at constant bit rate (cbr)..

    ffmpeg -y -i input.vid -vn -acodec libmp3lame -ab 128K -- output.mp3

    the resulting file has a Xing header (intended to be associated with variable bit rate, vbr, files) instead of CBR header. I do not know if this is an issue with ffmpeg or with the lame codec. How do I force a CBR header to be written instead of the Xing Header ?

    The reason I ask is because on some old software, the song loops perpetually and on older firmware of some mp3 players the song will cause the player to crash due to the header discrepancy.

    If it's not possible to force a CBR header to written, are there any linux command line tools that can change this header ? The only linux cli program I found was mp3val, however when I run the -f option it reports the file is just fine and dandy.

  • Importing FFMPEF Generated file into imovie

    14 mai 2023, par saurav tripathi

    I am generating a .mp4 file using command

    


    ffmpeg  -i input.png -i input.mp3 -vcodec libx264 \ -vf scale=1920:1080,format=yuv420p  -c:v prores_aw movie1.mov


    


    It generate a video. I am able to open the video in quick time player without any problem, but when I try to import the video in imove, the size of the video changes to 0.1s. The length of the generated video from ffmpeg command is about 11 seconds. How do I fix this problem.

    


    I am trying to generate a movie file combining a .png file and a .mp3 file using ffmpeg, I was able to generate a movie which was about 11 seconds, I was able to open the file in quick time players, but when I try to import the video in imovies, or Davinci resolve, then it doesn't shows me an error, but the length of the video turn out to be just 0.1 seconds.