Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (39)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7113)

  • Add FATE test for matroska error recovery.

    5 mai 2013, par Reimar Döffinger
    Add FATE test for matroska error recovery.
    

    This is the first 2 MB of the official test7.mkv.
    That length seems to be enough to detect the bugs
    we had in our code so far.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] tests/fate/demux.mak
    • [DH] tests/ref/fate/mkv
  • Kodi : playback several video files from the internet as single movie with single timeline

    30 mai 2018, par HarryFox

    I’m writing an add-on for Kodi in Python, for a site with movie collection, which can be able to playback online video from the site. But problem is that many of them splitted apart on pieces of different length. And its not mpeg dash nor m3u playlists, its just individual pieces of single movie or an episode.

    My target is able to play those splitted videos as single movie with single timeline and playback will no require download all pieces of a movie. It’s important because many of Movies\episodes provides with subtitle file, that why single timeline is important. Also general idea for plugin which I’m writing is comfort to use, so online playback is very important too.

    I did some research but it almost no result. On official Kodi forum advise to create Input Stream add-on like Input Stream Adaptive, but it was written on c++ and it’s unattainable for me (for now at least). There is no tools for python to create such kind of add-ons.

    Another idea is to create middle server which on fly will somehow (with ffmpeg) combine those pieces, but it seems that the process will too resource-intensive especially for TV-boxes.
    In this case also raise many question about which way is better, and i have no enough experience and knowledge to solve the problems by myself even with google.

    So i need an advice how can i solve the problem, just to know right direction.
    Thank you for your time.
    Sorry for my English.

  • Ffmpeg color opacity

    19 janvier 2016, par Sandra

    I tried to rotate a video and keep the unused place due to the rotation transparent, to be able to overlay it later and to do that, I suppose that if the color was transparent is will be right ; and in the official page (https://www.ffmpeg.org/ffmpeg-filters.html#rotate) they said that you can give a color that ffmpeg would use in place of unused place due to the rotation of the video. So I tried, relatively to https://www.ffmpeg.org/ffmpeg-utils.html#Color to put a color with these commands

    ffmpeg -i video.mp4 -vf "rotate=PI/6:fillcolor=red@0.0" -acodec copy output.mp4

    and

    ffmpeg -i video.mp4 -vf "rotate=PI/6:fillcolor=red@0x00" -acodec copy output.mp4

    And it doesn’t work. The color remain opaque, and that whatever the value of the opacity (0.0 to 1.0)

    Any of you can know what is happened ?