Recherche avancée

Médias (91)

Autres articles (71)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6909)

  • 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 !

  • 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 !

  • 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,