Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (107)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (9216)

  • Revision b0ef621f84 : Merge "Allow large tx_size in lossless coding with transform skipping" into next

    28 décembre 2014, par punksu

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_rdopt.c



    Merge "Allow large tx_size in lossless coding with transform skipping" into
    nextgen

  • Ffmpeg : Concat multiple videos and an audio file. Videos may or may not have audio and I cant know it before runnign the command

    28 juillet 2023, par AtActionPark

    I have a list of mp4 and an aac audio file. I have a concat.txt file with all the mp4s that need to be concatenated.
I need to concat all the mp4s and merge the aac on top.

    


    As said in the title, the mp4s individually may or may not have an audio track, and I can not check the mp4s with no audio, add a dummy sound track as it will be an automated process with thousands of commands executed daily.

    


    The sound of the mp4, if present, must be preserved and merged with the aac

    


    Here is a working command for the case where at least the first of my mp4s has an audiotrack :

    


    ffmpeg -f concat -safe 0 -i concat.txt -i audio.aac  -c:v copy -filter_complex "[0:a][1:a] amix=inputs=2:duration=shortest [audio_out]" -map 0:v -map "[audio_out]" -y result.mp4


    


    However that breaks if my mp4s dont have audio

    


    


    Stream specifier ':a' in filtergraph description [0:a][1:a]
amix=inputs=2:duration=shortest [audio_out] matches no streams.

    


    


    I've been reading about anullsrc, and would like to take [0:a] if it exists, or a generated empty audio channel, and merge it with my aac, but I'm not getting there.

    


    Any help would be appreciated

    


    Thanks

    


  • How to stop ffmpeg process after it has finished processing in C# ?

    7 janvier 2018, par alan samuel

    I am trying to stop the ffmpeg process once it has finished doing what I want it do, but I am not able to find a way.

    Here is what I have done.

    //Process for running ffmpeg
    Process process = new Process();
    process.StartInfo.RedirectStandardOutput = true;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.FileName = ffmpegfile;
    process.StartInfo.Arguments = commandtorun;
    process.StartInfo.UseShellExecute = false;
    process.StartInfo.CreateNoWindow = true;


    process.Start();
    process.WaitForExit();

    process.Close();

    The problem is ffmpeg does not tell the process to stop after it has finished executing, so I cant use WaitForExit() call.

    What i tried doing is

    commandtorun = commandtorun+ " && exit";

    to force ffmpeg to close after it finishes executing. Now this works when I try in cmd.

    But when I do the same thing in C#, ffmpeg closes down as soon as the command is executed.

    Is there any way to force ffmpeg or the process to close after the processing is done ?