Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (105)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (7731)

  • ffmpeg : How can I receive from /dev/video0 and store raw image on my pi

    2 février 2016, par YoungIn Lee

    I’m working on a Raspberry Pi connected to a USB camera.

    I’m trying to receive a stream from /dev/video0.

    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libswscale></libswscale>swscale.h

    int main() {

       AVFormatContext   *pFormatCtx = NULL;

       av_register_all();

       avdevice_register_all();

       AVInputFormat *inputFormat = av_find_input_format("v4l2");

       AVDictionary *options = NULL;

       av_dict_set(&amp;options, "framerate", "25", 0);

       printf("%d\n",avformat_open_input(&amp;pFormatCtx, "/dev/video0 ", inputFormat, &amp;options));

       retrun 0;
    }

    Am I right ?

    How can I store raw image to my Raspberry Pi ?

  • FFMPEG store method : Separated fields ?

    17 février 2021, par Caloux Fld

    I am using FFMPEG with GPU h264_nvenc codec to upscale MPEG2 interlaced files.&#xA;h264_nvenc generate h264 with the store method : Separate fields (in mediaInfo) instead of the store method : Interleaved fields. These files with separate fields seems to be incompatible with tools like GVG Edius. How to change this store method ?

    &#xA;

    with ffmpeg version N-92103-gebc3d04b8d Copyright (c) 2000-2018 the FFmpeg developers&#xA;built with gcc 8.2.1 (GCC) 20180813

    &#xA;

    Command FFMPEG :

    &#xA;

     -ss 00:14:45  -hwaccel cuda   -c:v mpeg2_cuvid  -i "input.mpg" -t 00:00:10 -vf "scale=if(gt(dar\,1.6)\,1920\,1460):1080:flags=lanczos:interl=1" -c:v h264_nvenc  -pix_fmt nv12 -flags &#x2B;ilme&#x2B;ildct -b:v 16M -maxrate:v 22M -bufsize:v 8M -profile:v high -level:v 4.1 -rc:v vbr  -coder:v cabac -f mp4 -y "inputUpscaled_GPU.MP4"&#xA;

    &#xA;

    mediainfo testUpscale_GPU.MP4 :

    &#xA;

    Format                                   : AVC&#xA;Format/Info                              : Advanced Video Codec&#xA;Format profile                           : High@L4.1&#xA;Format settings                          : CABAC / 1 Ref Frames&#xA;Format settings, CABAC                   : Yes&#xA;Format settings, Reference frames        : 1 frame&#xA;Codec ID                                 : avc1&#xA;Codec ID/Info                            : Advanced Video Coding&#xA;Duration                                 : 10 s 0 ms&#xA;Bit rate mode                            : Variable&#xA;Bit rate                                 : 17.8 Mb/s&#xA;Maximum bit rate                         : 22.0 Mb/s&#xA;Width                                    : 1 460 pixels&#xA;Height                                   : 1 080 pixels&#xA;Display aspect ratio                     : 4:3&#xA;Frame rate mode                          : Constant&#xA;Frame rate                               : 25.000 FPS&#xA;Original frame rate                      : 50.000 FPS&#xA;Color space                              : YUV&#xA;Chroma subsampling                       : 4:2:0&#xA;Bit depth                                : 8 bits&#xA;Scan type                                : Interlaced&#xA;Scan type, store method                  : Separated fields&#xA;Scan order                               : Top Field First&#xA;Bits/(Pixel*Frame)                       : 0.451&#xA;Stream size                              : 21.2 MiB (99%)&#xA;Codec configuration box                  : avcC&#xA;

    &#xA;

  • concatdec : store eof condition in context

    4 juillet 2015, par Marton Balint
    concatdec : store eof condition in context
    

    This is needed later for outpoint support which may leave the last file in a
    not-eof state.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/concatdec.c