Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (67)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (12429)

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

    


  • 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