Recherche avancée

Médias (91)

Autres articles (36)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (12808)

  • How to detect added scenes in Director's Cut Edition of movie ?

    17 juillet 2019, par B Lolo

    I’ve got huge collection of .mkv files. In every movie folder there are two files : one original movie and one extended edition of that movie.

    Two files can be different for example one is 480p and the second 1080p.

    One can be 1 hour long, second one 40 minutes.

    In those extended edition files scenes are added randomly, so it could be 2 minutes in beginning, 5 minutes after first 10 minutes of the film and so on.

    Is there a way to use Python and ffmpeg to detect scenes from extended edition files that are absent in original movie file ?

    I can also work with only audio if that is easier to do.

    For now I got idea to use ffmpeg and scene detection, I can manually search for differences between files, but I would like some hints where to look changes.

    This is python code with ffmpy library :

    from ffmpy import FFmpeg

    plik = "C:/special.mkv"
    png = re.sub("\.mkv","_changes.png",plik)

    ff = FFmpeg(executable='C:/ffmpeg.exe', global_options ='-v error', inputs={plik : ''}, outputs={png : "-vf select='gt(scene\,0.4)',scale=320:-1,tile=10x80 -frames:v 1 -y"})
    result = ff.run(stdout=PIPE, stderr=PIPE)
  • Python : movie stream into pygame

    4 mars 2019, par user1533267

    Quick challenge :

    I’m streaming part of my desktop screen trough the network using the following :

    Server

    $ ffmpeg -f x11grab -s 800x600 -r 30 -i :100 -an -q 10 -f mjpeg - | nc -lp 5000

    Client

    $ nc <computer address="address"> 5000 | ffplay -
    </computer>

    I would like to display the following stream inside my pygame opengl window on the client, I read some documents on pygame.movie and found :

    "Load a new MPEG movie stream from a file or a python file object."

    Would it be possible to load the stream into pygame ?
    I need it to be as responsive as possible, and right now im seeing about 500ms lag.

    Any ideas ?

    Thanks.

  • avformat/subtitles : binary search seeking.

    8 septembre 2013, par Clément Bœsch
    avformat/subtitles : binary search seeking.
    
    • [DH] libavformat/subtitles.c