Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (58)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Les images

    15 mai 2013
  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5974)

  • FFMpeg Batch Image + Multiple Audio to video

    15 octobre 2013, par Peco

    Im trying to do the following with FFMpeg I want to create multiple videos with one image and different audio files (music albums). These are my own albums so I have rights to do so before you ask. I have 100's of audio files to stick up on youtube.

    Is there a way I can create this in batch so i can just load one image (album cover) and multiple audio files (the album tracks) and get videos to the tracks length automatically ?

    Appreciate any help

  • avcodec/tiff : Make decoder init-threadsafe

    27 novembre 2020, par Andreas Rheinhardt
    avcodec/tiff : Make decoder init-threadsafe
    

    The only thing that stands in the way of adding the
    FF_CODEC_CAP_INIT_THREADSAFE flag to the TIFF decoder is its usage
    of ff_codec_open2_recursive() : This function requires its caller to hold
    the lock for the mutex that guards initialization of AVCodecContexts
    whose codecs have a non-threadsafe init function and only callers whose
    codec does not have the FF_CODEC_CAP_INIT_THREADSAFE flag set hold said
    lock (the others don't need to care about said lock). But one can set
    the flag if one switches to avcodec_open2() at the same time.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/tiff.c
  • How to make video with fixed duration

    27 juin 2013, par Alex

    I have videos :

    video1 - 923 seconds

    video2 - 1457 seconds

    video3 - 860 seconds

    I need to cut these videos and fix its duration - 600 seconds. But the difficulty is that I need to cut them under the scheme

    video

    Where :

    1. blue segments is always 120 seconds (fixed) ;

    2. red segments I should to cut ;

    3. green segments I shouldn't cut.

    After that I need to join blue and green segments in new 600 seconds video, example

    video

    As the video1, video2, video3 have a different duration, then the red and green segments must have different duration, they must be in equal proportion to the duration of the video.

    I need pure ffmpeg (avconv) command or bash script. I have no ideas how to make it.