Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (32)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5725)

  • configure : Avoid requiring c99wrap for working around msys path issues

    14 novembre 2013, par Martin Storsjö
    configure : Avoid requiring c99wrap for working around msys path issues
    

    Msys is unable to convert unix style absolute paths to windows style
    paths when combined with certain multichar MSVC options such as
    - Fo<file>. We used to work around this issue by passing them as two
    separate parameters separated by a space to c99wrap, which then mapped
    them back to the actual parameter format that MSVC uses.

    The only paths that actually are an issue are absolute unix style
    paths, and the only place such absolute paths are used with the output
    arguments (-Fo, -Fe, -Fi, -out :) are for the temp files within configure.

    By setting TMPDIR to . for msvc/icl builds, we never need to use
    absolute unix style paths for the file output, and we can use the
    actual proper form of the file output parameters. This avoids requiring
    the c99wrap wrapper for remapping the parameters for cases where the
    c99 converter isn’t invoked at all (MSVC2013 and ICL).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • resample : split the nearest neighbour path into a separate function pointer

    3 mars 2014, par Anton Khirnov
    resample : split the nearest neighbour path into a separate function pointer
    
    • [DH] libavresample/resample.c
    • [DH] libavresample/resample_template.c
  • Android ffmpeg : Path with spaces

    12 octobre 2017, par Javier Manzano

    I have almost the same problem that this question : Android : ffmpeg with filenames containing spaces

    The problem is I’m using this library : https://github.com/hiteshsondhi88/ffmpeg-android-java

    In the stack overflow question that I’ve post the only way to achieve is passing the cmd command as String[] (which cannot be done with this library)