Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (52)

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

  • 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 en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9136)

  • how do surface-blur to a video using FFMPEG common line ? [closed]

    11 février 2020, par zuiluo

    enter image description here
    enter image description here

    like above two image , Is there a way to use FFMPEG common line do that

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

    15 mars 2014, 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 combine them in ffmpeg and then play it 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, 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 ?

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