Advanced search

Medias (0)

Tag: - Tags -/alertes

No media matches your criterion on the site.

Other articles (62)

  • Publier sur MédiaSpip

    13 June 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

  • Soumettre améliorations et plugins supplémentaires

    10 April 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les formats acceptés

    28 January 2010, by

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

On other websites (9629)

  • avfilter/avfilter: Reorder structure fields

    10 February 2024, by Andreas Rheinhardt
    avfilter/avfilter: Reorder structure fields
    

    Move related fields closer together and try to plug holes.

    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/avfilter.h
  • Merge commit ’c2e936de07d054bf476e60445b453bf6b4836820’

    1 August 2013, by Michael Niedermayer
    Merge commit ’c2e936de07d054bf476e60445b453bf6b4836820’
    

    * commit ’c2e936de07d054bf476e60445b453bf6b4836820’:
    tree-test: Refactor and plug memory leaks

    Conflicts:
    libavutil/tree.c

    Most of this commit is not merged due to bugs in it

    Merged-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/tree.c
  • ffmpeg frame-accurate cutting

    24 September 2018, by jvecsei

    I’ve been trying for some time to achieve frame-accurate cuts with ffmpeg.

    Since I don’t want to do a complete re-encoding, my idea was to do a re-encoding only at the intersections. This works fine, but it seems like the sound will become more and more asynchronous over time (at the end 0.5s).

    The command for the intersection point is from the "real" start to the next keyframe:

    ffmpeg -ss 468.24 -to 474.680000 -i input.avi -c:a mp3 -c:v h264 -avoid_negative_ts make_zero -pix_fmt yuv420p -r 25 input.avi_0.tmp.start.avi

    The command for what comes next is from the keyframe to the next cut:

    ffmpeg -ss 479.720000 -t 2039.320000 -i input.avi -c copy -avoid_negative_ts make_zero -pix_fmt yuv420p input.avi_0.tmp.avi

    I do this multiple times and fhe file names of the results will be written to concat.txt

    Then i merge the files with:

    ffmpeg -f concat -fflags +genpts -async 1 -i input.avi_concat.txt -c copy -pix_fmt yuv420p -y input.cut.avi

    Does anyone have any idea what else I can try? I tried async/vsync but unfortunately without any great result. Before executing the concat command the files are all fine...