Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (93)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (16222)

  • doc/filters : note minimum resolution for pixscope

    10 octobre 2017, par Gyan Doshi
    doc/filters : note minimum resolution for pixscope
    

    Signed-off-by : Gyan Doshi <gyandoshi@gmail.com>
    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] doc/filters.texi
  • 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,

  • Android video encoding with fr and resolution manipulation

    24 février 2017, par apSTRK

    I want to be able to take a video recorded with an Android device and encode it to a new Resolution and Frame Rate using my app. The purpose is to upload a much smaller version of the original video (in size), since this will be videos 30 min long or more.

    So far, I’ve read of people saying FFmpeg is they way to go. However, the documentation seems to be lacking.

    I have also considered using http opencv http://opencv.org/platforms/android.html

    Considering I need to manipulate the video resolution and frame rate, which tool do you think can do such things better ? Are there any other technologies to consider ?

    An important question is, since this will be long videos, is it reasonable to do the encoding in an android device (Consider power resources, time, etc.)

    Thanks in advance !