Recherche avancée

Médias (91)

Autres articles (79)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (14278)

  • Batch file to normalize audio using Mediainfo command line interface

    16 septembre 2021, par Hinsdale1

    I would like to create a Windows batch file script to normalize the audio for all videos (mostly .mkv files) in a folder.

    


    I am using a python script called ffmpeg-normalize (utilizes ffmpeg's loudnorm filter 2pass) to accomplish this currently. This command line will currently normalize the audio (creates an output folder called "normalized") in all video files but I need to manually enter specific values for it to use the proper audio codec and sampling rate.

    


    I would like to use Mediainfo command line interface to query each video file in the folder first and determine its audio bit depth and audio sampling rate and then use these values to assign the proper audio codec and sampling rate parameters to perform the loudness normalization on each file.

    


    For example :

    


    If the audio bit depth of the video file is 16 bits and the sampling rate is 44.1 khz then the command would be :

    


    for /f "tokens=*" %G in ('dir /b *.mkv') do ffmpeg-normalize -c:a pcm_s16le -ar 44100 "%G"

    


    If the audio bit depth of the video file is 24 bits and the sampling rate is 96.0 kHz then the command line would be :

    


    for /f "tokens=*" %G in ('dir /b *.mkv') do ffmpeg-normalize -c:a pcm_s24le -ar 96000 "%G"

    


    Audio bit depth of "16" should use pcm_s16le audio codec, Audio bit depth of "24" should use pcm_s24le audio codec, sampling rate of "44100 : should use -ar 44100, etc

    


    mediainfo --Inform=Audio;%BitDepth% test.mkv will generate the right bit depth (16 or 24)
mediainfo --Inform=Audio;%SamplingRate% test.mkv will generate the right sampling rate (44100,48000,88200,96000 or 192000)

    


    Just dont know how to nest the FOR / TO DO / NEXT stuff in order to create the batch file.

    


    Thank you in advance to anyone who is willing to assist.

    


  • How to fuse a .mp4 video with a .wav audio with an offset in ffmpeg from command line ?

    4 février 2012, par minder42

    I've got a tv clip in mp4 format containing audio and video, and an wav audio_commentary track.

    I've been trying to fuse them in ffmpeg and have they played online with a flash player (which can only take h264 format)

    What's the best ffmpeg command to accomplish this ? My inputs are mp4 video, wav audio, and an offset in seconds which is the time the audio commentary starts relative to the start of the mp4 video.

    I tried

    ffmpeg -i input_audio.wav -i input_vid.mp4 -vcodec copy output.mp4

    and

    ffmpeg -vcodec copy -ss offset -i input_audio.wav -i input_video.mp4 output.mp4

    nether of these do what i want and output the video in the h264 format that is good for flash players- Is there a way to do this from command line in ffmpeg ?

    Thanks in advance

  • Revision 648cfcb437 : Changed setup intra recon to be row based Initialize the top line at the beginn

    13 septembre 2012, par Scott LaVarnway

    Changed Paths : Modify /vp8/common/setupintrarecon.c Modify /vp8/common/setupintrarecon.h Modify /vp8/decoder/decodframe.c Modify /vp8/decoder/threading.c Changed setup intra recon to be row based Initialize the top line at the beginning of each frame and the left column at the beginning of each (...)