Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (57)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7361)

  • Remuxing mp4 and change resolution with ffmpeg programmatically

    9 janvier 2015, par ariel

    I have a remuxing.c example working from ffmpeg but I need to change resolution to minimize file size, anybody can explain me how to do that ? Or if there is another way to "compress" mp4 files without command line ? I’m a begginer with FFmpeg and need to send video files from android to server, and I’m deploying a NDK library to make this job because FFmpeg command-line implementation have some limitations and is very slow.

    Thanks

  • change video container with ffmpeg

    28 novembre 2019, par Pavel Angel Mendoza Villafane

    I want to change the mp4 container to m3u8. I know that it is possible using ffmpeg with :

    ffmpeg  -i input.mp4 -c:v copy -c:a copy output.m3u8

    or

    ffmpeg  -i input.mp4 -c:av copy output.m3u8

    or

    ffmpeg  -i input.mp4 -c copy output.m3u8

    Before commands only mux and demux avoiding decode and encode but in fact I want to make it. That is, keeping same audio/video codecs and others config (fps, bitrate, ...) I want to encode and decode the file before change the container.

    Why ? I want to measure the error introduced in that part.

  • Change text/content of video dynamically with ffmepg

    13 novembre 2015, par user3508612

    I have video template and i want to change the content of video dynamically. Trying to do with ffmpeg but i have no clue how to do that. Can this be done ? If yes how it can be done ?

    I tried adding text form text file but could not figure out who to add text at some particular time/frame.