Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (43)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (8535)

  • Looking for examples of ffmpeg and concat with list.txt and fade in-out

    30 octobre 2020, par Plazar99

    I've been researching how to do an ffmpeg-concat with play list and fade in/out. I haven't seen an example of this combination. my current command is as follows : I'd like to fade in and out of each video clip, and there are 35-60 video clips in the .txt list. ffmpeg build is from 2016, so it doesn't have gltransition.

    


    ffcommand = {"-f", "concat", "-safe", "0", "-i", renderDirPath + "concatscript.txt", "-i", musicDirPath, "-map", "0:v", "-map", "1:a", "-vf", "scale=640x480", renderDirPath + "finalrender.mp4"}


    


  • How can I convert files recursively with ffmpeg with modifed date is before a date, batch file

    7 octobre 2020, par Hasan Yilmaz

    I am trying to convert files in a folder with ffmpeg. Can i select files according to their modified date, especially before a date. here is my code is doing recursevly all the files with extentions below.
I found some batch codes like /D -date but it gives error. in which place should i put this date part ? thanks.

    


    for /R /D -01/01/2016 "D:\FFMPEG\videos\"  %%f in (*.mov,*.mxf,*.mkv,*.webm) do (
    D:\FFMPEG\ffmpeg.exe -i "%%~f" "%%~f_converted.mp4"
    )


    


  • Capture desktop with ffmpeg on Windows virtual machine [closed]

    1er octobre 2020, par Lirium

    I’d like to record what happens on my virtual machine with ffmpeg. My command is the following :

    


    ffmpeg -draw_mouse 1 -r 10 -f gdigrab -i desktop -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -y -an myfile.mp4

    


    My machine is Windows Server 2016 and it runs in the cloud. It works only with RDP connection. Is there any way to fake it ?
I thought about PyVirtualDisplay, but it seems to be a tool for Unix-like OS.