Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (94)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

Sur d’autres sites (17893)

  • using FFMPEG to convert to MP4 with maximum browsers compatibilty

    6 mars 2016, par Karim

    I’m converting from WMV to FLV using FFMPEG, and my problem is that the FLV videos are so big ! the 15 minutes video’s size ranges between 150MB and 1GB !
    I’m using the following FFMPEG command to convert and split WMV videos :

    nohup nice -1 ffmpeg -y -ss 00:00:00 -t 00:15:00 -async 1 -i INPUT.WMV -acodec libmp3lame OUTPUT.FLV

    And I’ve tried converting to MP4 before and the video size was much smaller than the FLV video.

    So my questions are :

    • Would the MP4 videos have any
      compatibility issues browsers ?
    • Would it work on iPhone, iPad ? (I
      know FLV videos doesn’t work on
      iPhones or iPads)
    • What is the best FFMPEG command to
      convert to MP4 without losing the
      quality of the video ?
  • matroskadec : introduce resync function.

    28 mai 2013, par Sean McGovern
    matroskadec : introduce resync function.
    

    This allows handling matroska files with errors.
    Fixes test4.mkv and test7.mkv from the official Matroska test suite,
    and by extension Bugzilla #62.

    Based on a patch by Reimar Doffinger <Reimar.Doeffinger@gmx.de>

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/matroskadec.c
  • ffmpeg : Turning images/audio into video with ffmpeg

    7 mai 2018, par melanie93

    I am using ffmpeg to turn a sequence of images (img001.png, img002.png, and so on) into a video (output.mp4) using the following command :

    ffmpeg -r 1/5 -i img%03d.png  -r 25 -qscale:v 2 -shortest -codec:a copy output.mp4

    The result is a video that displays every input image for five (5) seconds.

    1. Is it possible to have ffmpeg parse the filename paths and timings from a file ? I tried the slideshow tutorial on the official ffmpeg website but the output displayed only the last image, briefly, at the end of the video.
    2. Is it possible to bundle audio files with those settings ?

    For example :

    file 'image001.png'
    file 'sound001.wav'
    duration 5
    file 'image002.png'
    file 'sound002.wav'
    duration 2
    file 'image003.png'
    file 'sound003.wav'
    duration 3

    Image001 is displayed for five(5) seconds while sound001 is being played back and so on.