Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (59)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7928)

  • flutter :can i make the input file & the output file the same in ffmpeg command ?

    17 juillet 2022, par Khaled Mortaja

    I am using this command for applying a crop operation on a video stored on my internal storage $x is the location of the video , I do not want a new output file to be created, i just want the cropped video to overwrite the input video, so any changes on the video will be applied to the original video location.
i used this command but it did not work

    


    FFmpegKit.execute("-i $x -ss 00:00:01 -t 00:00:10 -c copy $x")


    


    any suggestions...
thanks in advance

    


  • Bat file to create a list of files and there paths in the same directory as the bat file

    4 janvier 2020, par punktilend

    I want to create a bat file that creates a list of files and there paths (MyList.txt). Saves that file to the same directory the bat file is being run in.

    This is what I am trying to accomplish with the MyList.txt. I would like to have the files in order as well.

    file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302301.MXF'
    file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302302.MXF'
    file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302303.MXF'
    file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302304.MXF'

    After this, I would like FFMPEG to concat those files ffmpeg -f concat -safe 0 -i MyList.txt -c copy -map 0 Output.mxf and output that to the same directory as well, but I think it will do that currently.

    This is what I have come up with so far :

    @echo off
    ECHO Creating MXF Concat List
    dir /a /-p /o:gen > "%~dp1MXF_list.txt"
    ffmpeg -f concat -safe 0 -i MXF_list.txt -c copy -map 0 Output.mxf
  • How to recursively check for a file's existence according to its extension and convert it with ffmpeg if it exist, using .bat file

    13 octobre 2018, par Hasan Yilmaz

    i need to find files has .mxf extension in Drive D : and put a logo on it and convert it to .mp4 and search for for one with same extension and put logo and convert it to .mp4.
    how can i make a .bat file for this.
    thanks

    i did it. thanks.
    here is the code.

    @echo off

    for /R "C:\" %%f in (*.mxf) do (
    echo %%~f
    ffmpeg.exe -i "%%~f" -i E:\Logo\logo.png -filter_complex "[0:v][1:v] overlay=60:50"  "%%~f.mp4"

    )

    pause