Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (74)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6166)

  • Add watermark to all frames in video using ffmpeg in C#

    4 mars 2013, par user2132236

    I use the following command to add a jpg watermark to my video in C# using ffmpeg :

    " -i " + inputFilePath + " -q:v 0 -q:a 0 -y " + @" -vf ""movie=logo.jpg [logo]; [in][logo] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]"" " + outputFilePath;

    This works fine but the output movie length is only one frame. Is this because it takes the duration from the jpg file ? How can i make ffmpeg to add a watermark to all frames in my video ?

  • How to merge mp4 audio dash fragment with another audio

    18 mars 2019, par mosvov

    I have 1 audio file from dash stream

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file_191282-377206_header.mp4':   Metadata:

    major_brand     : iso6
    minor_version   : 1
    compatible_brands: mp42dashmsdhmsixiso6avc1isom
    creation_time   : 2016-04-29T11:04:26.000000Z   Duration: 00:00:30.02, start: 14.997333, bitrate: 49 kb/s
    Stream #0:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 48 kb/s (default)

    Also in exiftool output :

    Movie Data Size                 : 180193
    Movie Data Offset               : 6388

    I try to merge with another audio and save metadata info like Movie Data Size/Offset and start/duration time.
    I try with ffmpeg/MP4Box commands like :

    MP4Box -new -add file_191282-377206_header.mp4 -add out000.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -codec copy -shortest output.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -filter_complex amerge -ac 2 -c:a aac output.mp4

    All the time information erased or changed.

    So question is how to merge 2 audio files inside mp4 and not change Movie Size/Offset and start/duration time ?

  • How to merge mp4 audio dash fragment with another audio

    19 décembre 2016, par mosvov

    I have 1 audio file from dash stream

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file_191282-377206_header.mp4':   Metadata:

    major_brand     : iso6
    minor_version   : 1
    compatible_brands: mp42dashmsdhmsixiso6avc1isom
    creation_time   : 2016-04-29T11:04:26.000000Z   Duration: 00:00:30.02, start: 14.997333, bitrate: 49 kb/s
    Stream #0:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 48 kb/s (default)

    Also in exiftool output :

    Movie Data Size                 : 180193
    Movie Data Offset               : 6388

    I try to merge with another audio and save metadata info like Movie Data Size/Offset and start/duration time.
    I try with ffmpeg/MP4Box commands like :

    MP4Box -new -add file_191282-377206_header.mp4 -add out000.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -codec copy -shortest output.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -filter_complex amerge -ac 2 -c:a aac output.mp4

    All the time information erased or changed.

    So question is how to merge 2 audio files inside mp4 and not change Movie Size/Offset and start/duration time ?