
Recherche avancée
Autres articles (48)
-
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 ) (...) -
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
Sur d’autres sites (7768)
-
FFMPEG to convert AVI, WMV, FLV, MOV and MP4 to libx264 MP4 [closed]
4 janvier 2013, par user1605928I have used the following command line expression to compress and convert AVI, WMV, FLV, MOV and MP4 files to libx264 MP4.
ffmpeg -i abc.flv -vcodec libx264 -vf scale=-1:360 -qscale 7 -acodec libvo_aacenc -ab 32 -ar 24000 abc.mp4
To run this command I use PHP exec() function. I need to know the most appropriate and the correct commands to convert each and every (above mentioned) format to H.264 MP4 format without changing the aspect ratio and video height less than or equal to 360 pixels. And with aac audio encoding codec. Sometimes ffmpeg fails to convert above formats but not always. It may be depending on the source file's codecs. So I need to know how the above command should be modified to convert each video format mentioned above. Furthermore what ffmpeg version and php ffmpeg extension would be better to use ?
Help needed urgently...
-
Is there any way to use FFMPEG expressions in bitstream filters options ?
6 avril 2022, par antonm76FFMPEG allows to set User Data Unregistered in SEI block with
h264_metadata
bitstream filter :

ffmpeg -i input/test.mp4 \
 -bsf:v \
 "h264_metadata=sei_user_data=c5bfd5ee-b030-11ec-b909-0242ac120002+waagh" \
 -f h264 \
 test.h264



I know it is possible to use FFMPEG expression evaluation mechanism in filter bodies, is it possible to do that in bitstream filter bodies ? More specifically, I would like to encode a current Unix timestamp into SEI block to calculate actual latency during playback.


None of my attempts to use expressions in bitstream filter bodies worked.


-
avfilter/vf_libplacebo : fix normalize_sar calculation
18 novembre 2022, par Niklas Haasavfilter/vf_libplacebo : fix normalize_sar calculation
This previous expression multiplied a constant (outlink->h) that was
guaranteed to be 0 at this point, thus making it always a no-op.Fix the calculation, and also properly reset the SAR to 1:1 as is now
necessary (the failure to do so previously hid this bug's existence).