Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (4498)

  • fftools/ffmpeg_filter : make OutputFile.width,height private

    6 juillet 2023, par Anton Khirnov
    fftools/ffmpeg_filter : make OutputFile.width,height private
    

    They are not used outside of the filtering code.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
  • How to make the overlay width and height fixed in FFMPEG

    17 juin 2023, par Mohammed Hamdan

    for example

    


     // Common overlay image input
 String commonOverlayImage = '/storage/emulated/0/DCIM/Camera/IMG_20230530_201349.jpg';

 // First execution
 String backgroundImage1 = 'storage/emulated/0/DCIM/Camera/IMG_20230530_201359.jpg'; // width: 2448, height: 3264
 String outputPath1 = '/storage/emulated/0/DCIM/Camera/outputPath1.jpg';
 String command1 = '-y -i $backgroundImage1 -i $commonOverlayImage -filter_complex "[1:v]scale=500:500[ovrl];[0:v][ovrl]overlay=100:100" $outPutPath1';

 // Second execution
 String backgroundImage2 = '/storage/emulated/0/Download/images.jpeg'; // width: 736, height: 272
 String outputPath2 = '/storage/emulated/0/DCIM/Camera/outputPath2.jpg';
 String command2 = '-y -i $backgroundImage2 -i $commonOverlayImage -filter_complex "[1:v]scale=500:500[ovrl];[0:v][ovrl]overlay=100:100" $outPutPath2';


    


    the previous two executions work fine but the issue is commonOverlayImage look difference in width and height and position too , however they have the same values and this because the difference of backgroundImage1 and backgroundImage1 dimensions

    


    How can i make them fixed and look the same always whatever backgroundImage dimensions is

    


  • avformat/mxfenc : fix stored/sampled/displayed width/height

    14 janvier 2023, par Jerome Martinez
    avformat/mxfenc : fix stored/sampled/displayed width/height
    

    According to MXF specs the Stored Rectangle corresponds to the data which is
    passed to the compressor and received from the decompressor, so they should
    contain the width / height extended to the macroblock boundary.

    In practice however width and height values rounded to the upper 16 multiples
    are only seen when muxing MPEG formats. Therefore this patch changes stored
    width and height values to unrounded for all non-MPEG formats, even macroblock
    based ones.

    For DNXHD the specs (ST 2019-4) explicitly indicates to use 1080 for 1088p.
    For ProRes the specs (RDD 44) only refer to to ST 377-1 without precision but
    no known commercial implementations are using rounded values.
    DV is not using 16x16 macroblocks, so 16 rounding makes no sense.

    The patch also fixes Sampled Width / Display Width to use unrounded values.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfenc.c
    • [DH] tests/fate/lavf-container.mak
    • [DH] tests/ref/lavf/mxf_dvcpro100
    • [DH] tests/ref/lavf/mxf_opatom