Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (83)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6842)

  • Augment FFmpeg command to apply to entire folder ? (Windows)

    10 novembre 2022, par Dee Gee

    I've got the command below working as I would like on individual files, but would like to be able to run it on all videos in a folder ( 600). Can anyone help me augment this to auto create the file name and run on all .mp4 files in a folder ?

    


    Test folder would be : "c :\users\owner\videos\test files" in this example.

    


    ffmpeg -ss 00:00:03.000 -i "c:\users\owner\videos\test files\test1.mp4" -vf "crop=w='min(iw\,ih)':h='min(iw\,ih)',scale=720:720,setsar=1" -vframes 1 test01.jpg


    


  • Apply Loop for Subprocessing Call FFMPEG in Python

    25 novembre 2019, par rayyar

    suppose I have a audio mp3 file with length 00:04:00 (240 seconds). I want to extract parts of said file each within range 2 seconds, so it would be :

    File_01 00:00:00-00:00:02, File_02 00:00:02-00:00:04, File_03 00:00:04-00:00:06 ... File_120 00:03:58-00:04:00.

    I am using python, call module subprocess to run ffmpeg function. What I did, I simply put it in a loop like this :

    count = 0
    count2 = 2
    count3 = 1
    while count2 <= audio_length:
       ffmpeg = 'ffmpeg -i input.mp3 -c copy -ss %d -to %d output%d.wav' % (count, count2, count3)
       subprocess.call(ffmpeg, shell=True)
       count = count + 2
       count2 = count2 + 2
       count3 = count3 + 1

    However, the subprocess part took a long time and it seems stucked. I’ve searched some insights, but i haven’t found any that mentions about looping. Any help appreciated.

  • apply spelling fixes

    10 novembre 2023, par Diederik de Haas via ffmpeg-devel
    apply spelling fixes
    

    Fix spelling issue as reported by Debian's lintian tool :
    accomodate -> accommodate
    addtional -> additional
    auxillary -> auxiliary
    bellow -> below
    betweeen -> between
    Calulate -> Calculate
    coefficents -> coefficients
    Defalt -> Default
    defaul -> default
    higer -> higher
    neccesary -> necessary
    orignal -> original
    ouput -> output
    precison -> precision
    processsing -> processing
    substract -> subtract
    Transfered -> Transferred
    upto -> up to

    Also add several of them to the 'common typos' check in patcheck.

    Signed-off-by : Diederik de Haas <didi.debian@cknow.org>

    • [DH] doc/demuxers.texi
    • [DH] doc/filters.texi
    • [DH] libavcodec/cbs_bsf.h
    • [DH] libavdevice/pulse_audio_enc.c
    • [DH] libavfilter/af_aiir.c
    • [DH] libavfilter/af_surround.c
    • [DH] libavfilter/cuda/load_helper.h
    • [DH] libavfilter/opencl/deshake.cl
    • [DH] libavfilter/vf_dedot.c
    • [DH] libavfilter/vf_transpose_npp.c
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/demux.h
    • [DH] libavformat/scd.c
    • [DH] libavutil/eval.h
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] tools/enc_recon_frame_test.c
    • [DH] tools/patcheck