Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (48)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (5515)

  • Powershell script for ffmpeg mkv—>mp4 remuxing ?

    15 août 2019, par crioxide

    I am interested in writing a Powershell script that calls ffmpeg to remux a series of videos from mkv to mp4 and converts subtitle track 1 of all these files to hard subs. I have never used these CLI programs like this before so this is difficult for me to figure out (I’ve had to resort to doing this task this way after getting frustrated with all the half-assed GUI solutions out there that can’t do the job). Can I get some help please ?

    AND can someone enlighten me how I can learn more about these pieces of software so I don’t have to go begging for solutions online anymore ?

  • downsizing multiple mpg files using ffmpeg.exe

    14 septembre 2022, par user2799077

    I'm using ffmpeg.exe to process screen captures for a demo using MS Game Bar. Game Bar captures at a high frame rate at high resolution and the files are very large.

    


    Using ffmpeg.exe I can process the files using :

    


    ffmpeg.exe -i file.mpg file_l.mpg

    


    And all is good but I'd like to create a bat file so I can do half a dozen or any in a folder all at once.

    


    My Windows bat skills are poor and I've been trying to get it to work using something like this without success :

    


    for %%f in (*.mp4) do (
  ren %%~nf%%~xf !fileNum!%%~xf
  set/a fileNum += 1


    


    Can anyone help please

    


  • MoviePy Is Able To Print Video Duration But When Performing Edit It Cannot Find Duration ? | Python

    10 avril 2021, par PythonProgrammer

    I have been troubled by this issue when I am making a video downloader.
The Code Below :

    


        videoclip = VideoFileClip(fr'{directory}\audio\{yt.title}.mp4')

    duration = videoclip.duration

    print(duration)

    audioclip = videoclip.audio
    audioclip.write_audiofile(fr"{directory}\{yt.title}.mp3")
    audioclip.close()
    videoclip.close()


    


    Output :

    


    145
MoviePy error: failed to read the duration of file C:\Users\achut\Desktop\Movies\audio\Winning With Half A Heart | Minecraft Skywars.mp4.
Here are the file infos returned by ffmpeg:

ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 9.2.1 (GCC) 20200122
  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt
  libavutil      56. 31.100 / 56. 31.100
  libavcodec     58. 54.100 / 58. 54.100
  libavformat    58. 29.100 / 58. 29.100
  libavdevice    58.  8.100 / 58.  8.100
  libavfilter     7. 57.100 /  7. 57.100
  libswscale      5.  5.100 /  5.  5.100
  libswresample   3.  5.100 /  3.  5.100
  libpostproc    55.  5.100 / 55.  5.100
C:\Users\achut\Desktop\Movies\audio\Winning With Half A Heart | Minecraft Skywars.mp4: Invalid argument


    


    For some odd reason it is able to print the video duration but apparently cannot find it when I am trying to save the audio from the video as a separate file.

    


    Thanks for the help ! I am using latest version of moviepy and its dependencies, I just installed it today.