Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (107)

  • 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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (13372)

  • ffmpeg : How to map mp3 input file list metadata to HLS output segments ?

    3 février 2017, par eagspoo

    I am trying to encode a list of mp3s into an HLS stream. This is basically working except that the output stream does not have the id3 metadata from the input mp3s encoded as timed metadata for HLS.

    Here is the command I am currently using :

    ffmpeg -y -f concat -re -i list.txt -vn -hls_flags delete_segments -hls_wrap 0 -hls_time 7 -map_metadata 0:g:0 ./hls/out.m3u8

    Using the map_metadata option was my attempt at copying this information but it did not work.

    Thanks for any help !

  • aacenc : remove TNS from the todo list

    29 août 2015, par Rostislav Pehlivanov
    aacenc : remove TNS from the todo list
    

    Pulses are already on the way so expect to see the list
    gone in the close future.

    TNS is already of sufficiently high quality to be enabled
    by default (but isn’t yet, so you too can help by testing !).

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc.c
  • ffmpeg program written in C, cannot open my camera in macOS Catalina 10.15.7

    27 mai 2022, par marco0631
    #include &#xA;#include &#xA;#include "libavcodec/avcodec.h"&#xA;#include "libavformat/avformat.h"&#xA;#include "libavdevice/avdevice.h"&#xA;&#xA;AVFormatContext* openCamera(void) {&#xA;    avdevice_register_all();&#xA;    AVFormatContext *ctx = avformat_alloc_context();&#xA;    AVInputFormat *ifmt = av_find_input_format("avfoundation");&#xA;    if (ifmt != NULL) {&#xA;        AVDictionary *opts = NULL;&#xA;        av_dict_set(&amp;opts, "video_size", "1280x720", 0);&#xA;        av_dict_set(&amp;opts, "framerate", "30", 0);&#xA;        av_dict_set(&amp;opts, "pixel_format", "uyvy422", 0);&#xA;        &#xA;        int ret = avformat_open_input(&amp;ctx, "0", ifmt, &amp;opts);&#xA;        if (ret != 0) {&#xA;            printf("no");&#xA;            avformat_free_context(ctx);&#xA;            return NULL;&#xA;        }&#xA;    }&#xA;    return ctx;&#xA;}&#xA;&#xA;int main(int argc, const char *argv[]) {&#xA;    openCamera();&#xA;}&#xA;&#xA;

    &#xA;

    My code run on Xcode. After I have added the plist file, the running program camera opens for about half a second and then closes. and console output

    &#xA;

    2022-02-22 00:39:19.372178&#x2B;0800 ffmpeg-tool[5977:195724] [plugin] AddInstanceForFactory: No factory registered for id <cfuuid 0x10640cf60="0x10640cf60"> F8BB1C28-BAE8-11D6-9C31-00039315CD46&#xA;2022-02-22 00:39:19.434783&#x2B;0800 ffmpeg-tool[5977:195724]  HALC_ShellDriverPlugIn::Open: Can&#x27;t get a pointer to the Open routine&#xA;2022-02-22 00:39:19.435262&#x2B;0800 ffmpeg-tool[5977:195724]  HALC_ShellDriverPlugIn::Open: Can&#x27;t get a pointer to the Open routine&#xA;2022-02-22 00:39:19.501780&#x2B;0800 ffmpeg-tool[5977:195724] [plugin] AddInstanceForFactory: No factory registered for id <cfuuid 0x10640f860="0x10640f860"> 30010C1C-93BF-11D8-8B5B-000A95AF9C6A&#xA;2022-02-22 00:39:19.605797&#x2B;0800 ffmpeg-tool[5977:195724] Metal API Validation Enabled&#xA;2022-02-22 00:39:21.701071&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIOHardware.cpp:917:CMIODeviceStopStream the System is exiting&#xA;2022-02-22 00:39:21.701268&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIOHardware.cpp:1332:CMIOStreamCopyBufferQueue the System is exiting&#xA;2022-02-22 00:39:21.701538&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIOHardware.cpp:333:CMIOObjectGetPropertyData the System is exiting&#xA;2022-02-22 00:39:21.701767&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIO_DALA_System.cpp:264:GetPropertyData error 1970171760 (unop) getting property selector (inot) scope (glob) element 0&#xA;2022-02-22 00:39:21.702472&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIOHardware.cpp:333:CMIOObjectGetPropertyData the System is exiting&#xA;2022-02-22 00:39:21.702662&#x2B;0800 ffmpeg-tool[5977:195724] [] CMIO_DALA_System.cpp:264:GetPropertyData error 1970171760 (unop) getting property selector (inot) scope (glob) element 0&#xA;Program ended with exit code: 0&#xA;</cfuuid></cfuuid>

    &#xA;

    How can I solve this problem ?

    &#xA;