
Recherche avancée
Autres articles (106)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...)
Sur d’autres sites (15800)
-
FFmpeg scale 720*1080 video to 720*404, it not effect, it play as 279 × 404,and use ffmpeg -i it shows 720*404
16 mars 2018, par yue guanFFmpeg scale 720*1080 video to 720*404, it not effect, it plays as 279 × 404, and use cmd
ffmpeg -i scaled.mp4
it shows 720*404.
Then I use cmdffmpeg -i scaled.mp4 -y -f image2 -ss 1 -vframes 1 ./xx.jpg
to get the thumbnail, but I got the size is 720*404.
Why ?
and How can I capture the thumbnail of the video as 279*404 ?
and How can I scale the video as the size what I defined ?the video link :enter link description here
-
Best way to concatenate videos that have different resolution (generally 1080 or 720)
5 mai 2022, par jap101from command line or python would be best. and i am trying to concatenate around 15 clips of 45 seconds. preferably easy to automate with different number of videos and of different length.


-
FFMPEG can't generate 1920×1080 video
4 juillet 2017, par AlexI’m trying to generate a dummy video with ffmpeg with 1920×1080 size. Ffmpeg seems to not work with this size but it works fine with 1280x720 and with 3840×2160
The error message is the following :
[testsrc @ 0x7f95e3d13da0] Unable to parse option value "1920×1080" as image size
Last message repeated 1 times
[testsrc @ 0x7f95e3d13da0] Error setting option size to value 1920×1080.
[Parsed_testsrc_0 @ 0x7f95e3d13cc0] Error applying options to the filter.
[lavfi @ 0x7f95e6000000] Error initializing filter 'testsrc' with args 'duration=30:size=1920×1080:rate=23.976'
testsrc=duration=30:size=1920×1080:rate=23.976: Invalid argumentAnd I’m using this cmd line arguments :
ffmpeg -f lavfi -i testsrc=duration=30:size=1920×1080:rate=23.976 -vcodec h264 test_video.mov
Changing the frame rate does not solve the problem.
I have ffmpeg version 3.3.2 on OSX el capitan
Am I missing something ?