
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (94)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)
Sur d’autres sites (8189)
-
doc/examples : Always open files as "binary", not "text".
25 juin 2020, par Carl Eugen Hoyos -
Need help to convert all "mp4" files to "gif" in a folder/directry with ffmpeg and .bat
10 février 2023, par Lucas YangI need some help.I try work automation to eliminate unnecessary time, I was looking for a way to convert video files to gif files.
So I learned how to make it using ".bat" through Googling, and want to make it a ".bat file" that automatically converts all mp4 files at one click because only one file is converted at a time.


it worked perfect for me. but I got a lot of vidoe files what i have to convert. I installed ffmpeg in my PC(@window)


this is what i find


@echo off
chcp 65001
cls

setlocal
echo 프레임 수치를 설정하세요
set /p fps= 

ffmpeg.exe -i "%~1" -vf "fps=%fps%,scale=860:-1:flags=lanczos,palettegen" "%~n1.png"
ffmpeg.exe -i "%~1" -i "%~n1.png" -lavfi "fps=%fps%,scale=860:-1:flags=lanczos [x]; [x][1:v] paletteuse" "%~n1.gif"

del "%~n1.png"

goto :a



Thank for reading it.


-
MoviePy swaps the height and width of the video
29 février 2024, par Martin TošnerI am trying to work with MoviePy, but every time I work with a video whose height is greater than its width, MoviePy swaps the height and width of the video, as you can see in the picture. 1
Does anyone have any idea how to solve this please ?


def compress_video(old_video_filename, new_video_filename):
 video = VideoFileClip(str(UPLOAD_FOLDER) + str(old_video_filename))
 video.write_videofile(str(UPLOAD_FOLDER) + str(new_video_filename))