Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (74)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • 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 (...)

Sur d’autres sites (11770)

  • wmv2 @ 0xb42400 warning, clipping 1 dct coefficients to -255..255

    21 juin 2014, par Elliot Blackburn

    [wmv2 @ 0xb42400]
    warning, clipping 1 dct coefficients to -255..255

    I’m modifying some code in a C API that interacts between FFmpeg and and an AS3 Air application to encode a video after creating something.

    WMV was working okay earlier but now I’ve set things back I’m getting this very peculiar warning coming from the c library but it doesn’t make any sense and googles not providing many answers.

    I was wondering if anyone out there knew what this warning was about ? When the file comes back to me it’s totally empty with 0 frames. I must have changed something so I’m comparing the file from a few days ago with this one looking for anything that may have caused it to no longer work. But I was wondering if anyone had any better ideas than blindly looking through old and new code.

  • Is there a way to mux a telemetry track into a mp4 video with ffmpeg ?

    23 décembre 2019, par Emanuele Spatola

    I’m trying to write a tool that read the telemetry track from a gopro video file, process it and write it back in the input file.

    I can extract the telemetry track with this command :

    ffmpeg -y -i GOPR0001.MP4 -codec copy -map 0:m:handler_name:" GoPro MET" -f rawvideo GOPR0001.bin

    But I don’t know if it’s possible to mux the bin file back in the original file.

    Are there other tools other than ffmpeg that allows to do it ?

    Any suggestion would be greatly appreciated :)

  • How to properly specify font file for ffmpeg as it's always defaulting to Arial ? [closed]

    21 avril 2024, par Jim Jans

    When calling ffmpeg it keeps defaulting to Arial-MT / Arial-BoldMT even when specifying a font. How do you correctly specify the fontfile ?

    


    When specifying any font it will always default back :

    


    [Parsed_subtitles_0 @ 000001915a83f800] fontselect: (DosisBold, 400, 0) -> ArialMT, 0, ArialMT

    


    I am calling ffmpeg with the following command :

    


    ffmpeg -i input.mp4 -vf subtitles='subtitle.srt':force_style='FontName=DosisBold,Alignment=10,Fontsize=24' output.mp4 -loglevel debug

    


    I have a file called "DosisBold.ttf" in the same folder as ffmpeg. I have already tried FontName=DosisBold.ttf and it also doesn't work. All files are in the same folder as the ffmpeg.exe.

    


    I have converted the .srt file to .ass and specified the font file but it still defaults back to ArialMT.

    


    Format: Name, Fontname, Fontsize {...}
Style: SubStyle,DosisBold,24 {...}


    


    I am using "ffmpeg-n7.0-latest-win64-gpl-7.0", I have tried different versions of ffmpeg (e.g. "ffmpeg-master-latest-win64-gpl") and still no change. Also tried different fonts / font files and it always defaults back to Arial.