Recherche avancée

Médias (91)

Autres articles (13)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (4248)

  • Play video using HTML5 video tag

    21 janvier 2014, par user3217695

    Hi i need to display video in all the browsers using html5.

    I am uploading the file and creating html structure and it plays only mp4 format video, but not other uploaded formats, and i use command line to convert files but the converted files doesn't play in video tag.

    For conversion I use ffmpeg video conversion from one to webm format. Conversion works, but viedos don't play.

    Please find me ffmpeg code, which converts all videos to webm, so i can play the converted video using html5.

  • omxplayer : audio out of sync

    31 janvier 2014, par Jan Pulpan

    We build simple web controlled video player based on Raspberry Pi and omxplayer. The problem we have is any file which is transcoded with ffmpeg has an audio out of sync. The video file produced at iPad and uploaded directly to Pi plays fine. The same file transcoded with simple ffmpeg command like this doesn't and audio is about 1s delayed :

    ffmpeg -i input.mp4 output.mp4

    The audio out of sync problem shows at Raspberry/omxplayer only. If I play the same file at computer it's perfectly fine. The input file is 720p h264 aac one.

    Anyone has solved something like this before ?

    Thanks !

  • Adding a color filter at specific intervals in ffmpeg

    9 avril 2015, par JamieL

    I am looking to add the color filter to a rtmp stream in ffmpeg at specific time intervals, say for 10 seconds every 10 seconds. I have tried two approaches. The first :

    -vf "color=#8EABB8@0.9:480x208,select='gte(t,10)*lte(t,20)' [color];[in][color] overlay [out]"

    This streams only the 10 seconds indicated by the select and applies the color filter rather than playing the whole stream and applying the filter to just those 20 seconds.

    I then learnt about split and fifo and tried this approach :

    -vf "[in] split [no-color], fifo, [with-color] overlay [out]; [no-color] fifo, select='gte(t,10)*lte(t,20)' [with-color]"

    I would expect this to play the entire stream, and then select the 10 seconds specified so that I can apply filters, but it does the same as first approach and just plays the 10 seconds selected rather than the entire stream.

    Thanks in advance.