Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (88)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (14134)

  • Put text into AVFrame

    19 février 2024, par Michal

    I use the FFmpeg library and I have an object of AVFrame which uses the format AV_PIX_FMT_YUV420P. I'd like to put a text on such frame in a given location, font size etc.

    


    I cannot find a proper API in FFmpeg library to do it, there is a function drawtext, but it's a static function inside a .c file (not a header).

    


    How to do it with FFmpeg and if it's not possible, what other library I should use instead ?

    


  • FFMPEG not copying over metadata GPS data

    15 novembre 2017, par JK81

    Recording device tags the video file with geolocation, when converting from mov to mp4 the geolocation data is missing.
    ffmpeg -i source.mov -r 60 -c:v libx264 -c:a aac -map_metadata -1 -movflags faststart destination.mp4

    Am I doing something wrong ? I’m running the command from Windows 10 x64. If it’s not possible, is there a way to use a command at the same time for ExifTool to write it ?

    The lines for metadata missing :
    com.apple.quicktime.location.I &
    ©xyz

  • How to ignore SAR / DAR aspect rations in gstrreamer ? [closed]

    5 avril 2023, par eri

    I launch

    


    gst-launch-1.0 rtspsrc location=rtsp://admin:admin@10.10.6.118:554/Streaming/Channels/1 latency=100 ! queue ! rtph264depay ! h264parse ! avdec_h264 lowres=2 direct-rendering=true ! videoconvert ! autovideosink


    


    FFPROBE says

    


    Stream #0:0: Video: h264 (High), yuvj420p(pc, progressive), 2560x1440 [SAR 4:3 DAR 64:27], 12 fps, 12 tbr, 90k tbn, 24 tbc


    


    But SAR and DAR wrong in this stream.

    


    I want to take picture sized 2560x1440 i.e. 16:19 but got wider.

    


    How to ignore DAR and render as is ?