Recherche avancée

Médias (91)

Autres articles (102)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13204)

  • Creating TS file from MP4 file - Differing durations

    2 mai 2018, par Mark Walsh

    I am running the following command to crop an MP4 file

    -i "C:\FFMPEG\Temp\S3\2ad239d1-f4b9-4854-afe4-7e28157893daHighRes.mp4" -q:v 0 -y -ss 00:00:01.000 -to 00:00:29.834 -vf "fade=t=out:st=29.334:d=0.500, scale=iw*min(1080/iw\,720/ih):ih*min(1080/iw\,720/ih),pad=1080:720:(1080-iw)/2:(720-ih)/2" "C:\FFMPEG\Temp\Crops\5ae9806e32ab040978d97013_0.ts"

    As you can see I want to crop a video of exactly 28834 milliseconds long. However the created file when inspecting it via ffprobe is 28873 milliseconds long. Why is this ?

  • 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

  • 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