Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (97)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (12219)

  • FFMPEG, transcoding resolution error

    6 mai 2014, par Sajith Dilshan Jamal

    I am trying to convert a file using ffmpeg using the following command :

    ffmpeg input.flv -strict experimental -s 360x288 output.3gp

    I get the below error :

    The specified picture size of 360x288 is not valid for the H.263 codec.
    Valid sizes are 128x96, 176x144, 352x288, 704x576, and 1408x1152. Try H.263+

    The problem here is that i don’t use a command line to execute the commands, but through another program that I am coding,

    So if I am to only use the above specified resolutions, is there a command for ffmepeg so that given a codec, to retrieve the possible resolutions so that I can select the optimal one to convert with, not just for the above codec, but all codecs supported by ffmpeg.

    I have seen the documentation page of ffmpeg and the supported video resolutions but that is not what I am looking for, that is the resolutions that ffmpeg supports, not the resolutions the codec supports,

    I am looking for a command that will give me the resolutions that a given code will support

    thanks,

  • How to put watermak on video with FFMPEG,without resizing the watermark because of video resolution ?

    22 mai 2014, par Shahbaz Younis

    I’m looking for a way that the watermark picture does not get resized,if the video resolution is high or less. Right now I have this problem, if I upload a video like 720p the watermark is really small and when I upload a video that is 240p the watermark is really big. I would just like it to be only one size. Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where I put it ? Here’s the code I’m using right now

    if ($ffmpeg_ver == "old") {
                       $watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
               } else {
                       $watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
               }
  • batch converting in ffmpeg from jgp to gif while changing the resolution

    15 janvier 2018, par zlbooth

    Hi this is my first post - excuse how basic it is !

    I’ve got a line for batch converting jpg to gif in Mac

    for i in *.JPG; do
      ffmpeg -i "$i" "${i%.*}.gif"
    done

    This line is from Lord Neckbeard’s answer to this post. How do you convert an entire directory with ffmpeg ?

    I just want to add one more parameter which is batch converting the resolution as well as the file type.
    inputting this doesn’t work :

    for i in *.JPG; do
      ffmpeg -i "$i" -s:v 640x480 "${i%.*}.gif"
    done

    Any solutions much appreciated !