
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (46)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (8160)
-
FFmpeg -s error Option -s is deprecated, use -video_size. Option video_size not found.aq= 0KB vq= 0KB sq= 0B f=0/0
5 janvier 2021, par Education 4FunI'm trying to play a video like a preview before rendering
ffplay test.mp4 -af "volume=8.0,atempo=4.0" -vf "transpose=2,transpose=2,setpts=1/4*PTS" -s 640x480 -aspect 4:2
with -s its working finebut when i add -s its asking me to specify options
Option video_size not found.aq= 0KB vq= 0KB sq= 0B f=0/0
Let me know the syntax
thank you


and some times after converting i don't find the change in the details



ffmpeg -i 21.mp4 -vf "scale=1280*720" 21_edit.mkv



-
A ffplay Error :"Failed to set value 'yuv420p' for option 'pix_fmt' : Option not found"
3 novembre 2023, par DavisTaoI was trying to play a video by ffplay. Here’s my command :


ffplay -f rawvideo -pix_fmt yuv420p -video_size 640x360 Resources/video.h264


but I got this error :

Failed to set value 'yuv420p’ for option 'pix_fmt: Option not found


So l used another command to make the video playing correctly, and this is the command :


ffplay -f rawvideo -video_size 640x360 Resources/video.h264


I wonder why the first command reported the error, because I used
ffplav -pix_fmts
and found that yuv420p is supported.

By the way the pixel format of the video file is yuv420p exactly.


-
FFmpeg DLL console command-line wrapper for C# use
4 novembre 2015, par williamtroupI’ve been studying the FFmpeg project for a while, using mainly the command line to generate videos, extract audio, joined videos (etc). I like the flexibility of the command line and its a very useful and fast tool.
I was wondering, however, would it be possible to convert the C source code for the project and wrap it in a DLL, making the command line callable from a DLL entry point method ?
Does something like this already exist ?