Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (11560)

  • avformat/mxfenc : set/force channelcount in MXF D-10

    25 juin 2014, par Gaullier Nicolas
    avformat/mxfenc : set/force channelcount in MXF D-10
    

    There are interoperability issues with D-10 related to the channelcount property in the generic sound essence descriptor.

    On one side, SMPTE 386M requires channel count to be 4 or 8, other values being prohibited.
    The most widespread value is 8, which seems straightforward as it is the actual size of the allocated structure/disk space.
    At the end, it appears that some vendors or workflows do require this descriptor to be 8, and otherwise just "fail".

    On the other side, at least AVID and ffmpeg do write/set the channel count to the exact number of channels really "used",
    usually 2 or 4, or any other value. And on the decoding side, ffmpeg (for example) make use of the channel count for probing
    and only expose this limited number of audio streams
    (which make sense but has strong impact on ffmpeg command line usage, output, and downstream workflow).

    At the end, I find it pretty usefull to simply give ffmpeg the ability to force/set the channel count to any value the user wants.
    (there are turnaround using complex filters, pans, amerge etc., but it is quite boring and requires the command line to be adapted to the input file properties)

    Reviewed-by : Matthieu Bouron <matthieu.bouron@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mxfenc.c
  • Get all bytes of stream from webcam after being compressed by codec with ffmpeg ?

    26 octobre 2015, par vantrung -cuncon

    I need to capture every single byte of the video stream from webcam -after using commandline-ffmpeg to compress it with codec.

    So can you please light me up with somewhat the ffmpeg commandline look like and the strategy to get the output stream into my program written by VB6 or VB.net ? (I need to manipulate with every single byte !) Highly appreciate any suggestion.


    Update : I wonder if it’s possible to save the output as "avi" file on hard disk and at the same time use my program to read content of the saving file. Can I playback the "part of avi file" that I retrieve while the file is being saved (appended) ? Is there any better file format for writting & reading (recording & playing) at the same time other than "avi" ?

    Or any better/faster solution ?

  • Is it possible to read a Video from POST request into python-ffmpeg or OpenCV ?

    16 janvier 2021, par PhyDev

    I've been thinking of a way to read the uploaded Video from POST request with ffmpeg-python or OpenCV so I can process it before saving, so is it possible ?&#xA;And if not, then is it safe to save the video into disk and then do all the processing required ? the main point that is bothering me is that I would want to read Video length so I can verify it's valid, so is it also a good idea to save it into disk, check length, and then keep it if its length is in the permitted range, and otherwise I delete it.

    &#xA;

    Thanks in advance.

    &#xA;

    Note : I've noticed that the tags don't contain ffmpeg-python, so answers regarding pyffmpeg are also accepted.

    &#xA;