Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (95)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (5338)

  • How to merge two videos ?

    1er mai 2016, par Alexander

    I use https://github.com/Zulko/moviepy library for merge two videos with python. It merged successfully but sound of videos is not exists in merged.mp4.

    The python code :

    clip1 = VideoFileClip("2.mp4",audio=True)
    clip2 = VideoFileClip("1.mp4",audio=True)
    final_clip = concatenate_videoclips([clip1,clip2],method="compose")
    final_clip.write_videofile("merged.mp4")

    I also tried with ffmpeg

    ffmpeg -i 'concat:1.mp4|2.mp4' -codec copy merged.mp4

    ffmpeg couldn’t merge videos. It create merged.mp4 which has only 1.mp4

    How can I merge two videos with python or another way ?

  • Decode two videos at a same time

    2 mai 2016, par Sagar
    • How to Decode two videos at a same time using FFMPEG.
    • For one video encoding code is working fine but if i do same things for seceond video then it’s not working.
  • Stream frames of videos to server, compile, and download

    20 avril 2016, par Amol Patel

    I have an application that currently allows a user to upload a video and plays the gray-scaled version of the video side by side in real time. I want to be able to upload the gray-scaled video to a server frame by frame, compile the frames, and then allow the user to download the video. I have looked at various libraries such as ffserver, stream-encoder.js, node-video, etc. but have not been able to find something that does what I need. I plan on running ffmpeg on the server side to compile the frames

    Any tips or libraries I could use would be very helpful.

    Thanks