Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (103)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8850)

  • FFMpeg open a DVD VOB chain ?

    27 mars 2017, par Sugrue

    I’m new to FFMpeg so this may be a dumb question, but I don’t see the answer in the documentation.

    I want to decode frames from a DVD vob files. Opening the first VOB in the group works fine, but how do I tell ffmpeg to continue on to the next VOB and read all the VOBs on a DVD ?

    I have the VOB files in a folder on a hard disk.

  • FFMpeg open a DVD VOB chain ?

    28 octobre 2020, par Sugrue

    I'm new to FFMpeg so this may be a dumb question, but I don't see the answer in the documentation.

    



    I want to decode frames from a DVD vob files. Opening the first VOB in the group works fine, but how do I tell ffmpeg to continue on to the next VOB and read all the VOBs on a DVD ?

    



    I have the VOB files in a folder on a hard disk.

    


  • FFmpeg - How to scale a video then apply a watermark ?

    28 août 2016, par Olibanum

    Im trying to scale a video so that it is always 512 wide where the height changes in proportion to the original video.
    Once scaled, I then want to apply a watermark/overlay to the video, therefore the video will scale but the watermark wont.

    I am able to achieve each of these separately using the following filters :

    Scale

    -vf "scale=512:-1"

    Watermark

    -vf "movie=watermark.png [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2 [out]"

    They work successfully on their own.

    However when trying to combine the two, Im having a bit of trouble.

    Having both as parameters of course does not work as one will override the other.

    Ive tried :

    -vf "scale=512:-1,movie=watermark.png [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2 [out]"

    my thinking was that the scale would be applied first then the watermark but all I get is an error

    Too many inputs specified for the "movie" filter.

    Error opening filters !

    Then changing the , to a ; resulted in :

    Simple filtergraph ’scale=512 :-1 ;
    movie=watermark.png
    [watermark] ; [in][watermark]
    overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2 [out]’ does not have
    exactly one input and output.

    Error opening filters !

    I presume I need to do something more with filterchains but Im struggling to figure it out.

    Any ideas anyone ?

    Many thanks in advance.