Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (52)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • 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

Sur d’autres sites (9354)

  • FFmpeg -itsoffset cropping the video (but I don't ask)

    6 septembre 2021, par Eugen Dubrovin

    I have one client video file (which length about 4minutes)

    


    trying to make offset on the video (1second audio offset)

    


    ffmpeg -v quiet -i  $CLIENTVIDEO  -itsoffset -1 -i $CLIENTVIDEO -map 0:v -map 1:a -c copy $TO_OFFSET_DIR


    


    after this procedure the video cropping to one and a half minute

    


    when I add -c:a to FFmpeg option everything is working fine (but taking ages to process the video)

    


    is there anyway to process without -c:a option

    


  • Revision a0b9b050b8 : Added a speed feature That force the stop of subpel search possibly at full/hal

    22 janvier 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_rdopt.c



    Added a speed feature

    That force the stop of subpel search possibly at full/half/quater pel
    stages

    Change-Id : Ie50c500417bd78e1a53e6620bd4c2b85f63d9c67

  • Trim / Cut video on Android using FFMpeg's Copy

    6 août 2012, par Kevin P

    We're trying to replicate the functionality of this command line ffmpeg directive using the FFMpeg c api through JNI calls on Android.

    ffmpeg -ss 2 -t 120 -vcodec copy -acodec copy -i input.file output.file

    Basically, given a start and end time, we wish to copy (not re-encode) a small(er) segment of video from the larger (input) video source.

    We've been using the wonderful JavaCv wrapper to openCv and FFMpeg, but we just cannot figure out how to do this simple bit of work. We've been scouring the ffmpeg.c and related sources and while I now understand that it switches to stream_copy and remuxing rather than re-encoding when the codec is specified as copy I cannot for the life of me identify what series of method calls to make to replicate this through the C api. Does anyone have an example JNI file for doing this ? Or are there rockstar C types that can explain how I get from that command line to api calls ? We've spent the better part of two weeks working on this (we're not native C guys) and we're at the point where we just need to ship some code. Any example code, especially JNI code or method call maps etc. would be greatly appreciated !