
Recherche avancée
Autres articles (100)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9688)
-
Option -s is deprecated, use -video_size. Option video_size not found
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



Without
-s
its working fine, but when I add-s
its outputs error :

Option -s is deprecated, use -video_size.
Option video_size not found.



Let me know the syntax. 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



-
aspect ratio is changed using ffmpeg sameq and codec copy
21 mars 2012, par Vishal Parekhi am using ffmpeg to extract clip from mp4 video,
i tried with "-acodec copy -vcodec copy" and "-sameq"
in both, aspect ration of generated file is changed.
(
ffmpeg -sameq -i "input file" "output file"ffmpeg -i "input file" -acodec copy -vcodec copy "outputfile"
)
source file is of aspect ratio
sar=4:3
dar=4:3new file is has aspect ratio
sar=4:3
dar=1:1please help me to solve this problem,
one weird thing is when i see details in another video tool, it shows me
sar=4:3
dar=4:3
of source videobut when i use command ffmpeg -i sourcefile, it shows me
sar=300:400
dar=1:1thanks
-
subprocess.check_output fails with CalledProcessError but error is empty string. Command works in terminal
11 août 2022, par Leonardo the VinchiI want to run the command
ffprobe -i test.m4a -show_entries format=duration -v quiet -of csv="p=0"
. It works in the terminal and returns output code 0, but running it with subprocess, i.e.

subprocess.check_output(['ffprobe', '-i', 'test.m4a', '-show_entries', 'format=duration', '-v', 'quiet', '-of', 'csv="p=0"'])



raises a
CalledProcessError
-{Command} returned non-zero exit status 1.
. I tried running this command in a try-except loop and printing the error details, but it just outputs as an empty byte stringb''
.