Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8785)

  • How to convert a video to different resolution's using ffmpeg

    20 septembre 2018, par Binoy Cherian

    There are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.

    For low resolution :

    ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4

    And for high/same resolution (low->high is not feasible, but is there something we can do ?)

    ffmpeg -i input.webm -qscale 0 output.mp4

    I read that qscale preserves the video quality.Since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.

  • How to convert a video to low and high resolution using ffmpeg

    20 septembre 2018, par Binoy Cherian

    There are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.

    For low resolution :

    ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4

    And for high

    ffmpeg -i input.webm -qscale 0 output.mp4

    I read that qscale preserves the video quality. But since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.

  • Why android ffmpeg takes so long time to resize mp4 video from high resolution ?

    1er septembre 2018, par Kasim Rangwala

    I’m resizing  30 sec long ( 59.98 MB) mp4 video with resolution of 1920 X 1080 to 1280 X 720 using following ffmpeg command in android.

    ["-i", inputVideo!!.path, "-vf", "scale=720:1280", outputVideo.path, "-hide_banner"]

    converted video output is very good ( 6.6MB). but, ffmpeg conversion take so much time. Is there any options available that I can reduce the conversion time ?

    update

    If output format is other than mp4. it is fine but, conversion time must be reduce.

    Thanks.