Recherche avancée

Médias (91)

Autres articles (50)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • 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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (7200)

  • avisynth : Bump minimum required version to interface version 6

    2 avril 2015, par Stephen Hutchinson
    avisynth : Bump minimum required version to interface version 6
    

    The AVSC_API changes in the new headers mean that the 2.6 alphas
    are just as incompatible as 2.5 is.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] doc/general.texi
    • [DBH] libavformat/avisynth.c
  • ffmpeg based app and VLC IPC ?

    1er avril 2012, par ronag

    I have an application that uses the ffmpeg libraries (not ffmpeg.exe) to encode video and would like to forward the encoded data directly to a VLC process.

    Right now I use udp ://localhost (i.e. avio_open("udp://localhost:5290") and vlc udp://@localhost:5290) for interprocess communication, however it seems a bit unreliable.

    ffmpeg (avio_open) doesn't seem to support named pipes, i.e. \\.\pipe\test is not accepted, and I cannot use standard output/input piping since the applications run in different processes.

    Soo my question is, how can I achieve reliable (and somewhat efficient) interprocess communication between VLC and an application using the ffmpeg libraries ?

  • Overlaying multiple videos with ffmpeg [closed]

    21 juin 2015, par xZise

    I’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).

    I try to use following line :

    ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v

    The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.

    The sizes of the videos :

    • background : 720x576
    • a.m2v : 72x48
    • b.m2v : 720x210

    In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.