Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (32)

  • 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

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6321)

  • Split .MOV into frames and edit while preserving audio

    7 août 2015, par Devin

    I have a requirement to take a .mov file from a camera and apply a chroma key filter to it. The app currently handles still images with chroma through NetImageLibrary. I was hoping to use something like ffmpeg to split the .mov into frames, run them through the chroma filter and then reassemble them into the .mov or something similar. I have a feeling this will destroy the audio which I need to preserve. Is there a different way to do this that will keep the audio but allow me to apply the green screen chroma key ?

    Thanks !

  • lavc/av1dec : use frame split bsf

    15 décembre 2021, par Fei Wang
    lavc/av1dec : use frame split bsf
    

    Split packed data in case of its contains multiple show frame in some
    non-standard bitstream. This can benefit decoder which can decode
    continuously instead of interrupt with unexpected error.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/av1dec.c
  • Can't split 24bit flac files on the command line [closed]

    21 mars 2023, par Martin

    I am trying to export a 24bit flac file in my ubuntu terminal. I've tried two different methods, but neither work.

    &#xA;

    Method 1 : shntool

    &#xA;

    when I run this command :&#xA;shntool split -f times.cue -O always -o lowq_full_silence.flac

    &#xA;

    where lowq_full_silence.flac was rendered in audacity as a flac file with level=0 and bit depth=16 bit, my command works.

    &#xA;

    but if i run this command :

    &#xA;

    shntool split -f times.cue -O always -o full_hq.flac

    &#xA;

    where full_hq.flac has level=8 and bit depth=24 bit&#xA;The command fails :

    &#xA;

    shntool [split]: warning: unsupported format 0xfffe (Unknown) while processing file: [full_hq.flac]&#xA;shntool [split]: error: cannot continue due to error(s) shown above&#xA;

    &#xA;

    https://bugs.launchpad.net/ubuntu/+source/shntool/+bug/2000794

    &#xA;

    Method 2 : ffmpeg

    &#xA;

    Trying to split the flac file with comma separated 'split points' input

    &#xA;

    ffmpeg -i "full_hq.flac" -c copy -map 0 -f segment -segment_times "22,441,556,559" "%d_output.flac"

    &#xA;

    But the output from this ffmpeg command has broken length metadata :

    &#xA;

    https://trac.ffmpeg.org/ticket/4905

    &#xA;

    Is there a better way to split a high quality 24bit flac file into individual segments, where each exported segment file has correct length metadata ?

    &#xA;

    Files :&#xA;https://file.io/lvGTUEgQArb7

    &#xA;