Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (40)

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

  • Audio going out of sync when using setpts and tempo in ffmpeg

    30 mai 2019, par loveforfire33

    I am trying to slow down a video and its audio at the same time (mp4). I have tried doing the audio and video separately with code similar to the command below, but still get the same effect.

    The audio slowly goes out of sync with the video after roughly 30 seconds (audio goes faster).

    -i "INPUT" -filter_complex "[0:v]setpts=1.1*PTS[v] ;[0:a]atempo=0.9[a]" -map "[v]" -map "[a]" "OUTPUT"

    Any advice would be appreciated. Thanks in advance.

  • Installing FFmpeg in Red Hat 5 without internet connection

    22 septembre 2014, par kobain8

    I am trying to install the last working version of FFmpeg over Red Hat 5 and the machine has no internet connection, so I have to bring all the packages and required dependencies in a USB. The problem I am having is to get everything I would need for it.

    I searched through Google to find some guide or documentation to hep me, but there is nothing valuable for me.

    The version I got install was FFmpeg 0.6, but it is too old for my purpose of grabbing with x11grab, so anyone has any suggestion in order to get install one of the last versions of FFmpeg.

    Thanks in advance, right now I need some light !!

  • convert h264 codec to h263 using avconv

    11 juillet 2013, par Bagesh Sharma

    I am new to this conversion process and also have very little understanding of this.

    My requirement is to convert an .mp4 video having H.264 codec to .mp4 video having H.263 codec. I tried this
    avconv -y -i input_video.mp4 -c:v h263 -c:a libmp3lame output_video.mp4

    But i am getting error like
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    Please suggest. Any help is appreciated . Thanks in Advance !!!