Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (30)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (9656)

  • how to use ffmpeg in eclipse c++(win7 64)? [duplicate]

    22 août 2016, par Coco

    How to use ffmpeg, such as config include,lib,dll. It’s always build error.
    Who can tell me, thanks...

    #define __STDC_CONSTANT_MACROS

    #include <iostream>
    using namespace std;

    extern "C" {
    #include "libavformat/avformat.h"
    }

    int main() {
       av_register_all();
       cout &lt;&lt; "!!!Hello World!!!" &lt;&lt; endl; // prints !!!Hello World!!!
       return 0;
    }
    </iostream>

    error : /../src/ffmpeg_test.cpp:18 : undefined reference to `av_register_all’

  •  : and - characters not showing when applying drawtext

    6 mars 2019, par SPYBUG96

    I am trying to get the characters ’-’ and ’ :’ to show up when I draw text on an image so I can have the date and time show up properly formatted. When I run the python code and all that to set up the text it is exactly how I want it, I printed it to the screen. When the command is run though, the date and time don’t show, at least when I try drawing this : 2018-12-12 T03:20:40 What shows up on the image is 12 T

    This is an example of the ’ :’ and ’-’ characters having a problem

    ffmpeg -y -i TifImageLoc -vf vflip,drawtext=fontfile=C:WINDOWS\Fonts\sserife.fon:fontsize=200:fontcolor=white:x=(w-text_w)/2:y=(h-texth-texth)/2:text="Hello\-\ \:World" -frranes:v 1 output1.tif

    When this is run I want the result of Hello- :World to be drawn on the image, but the actual result is Hello perfectly centered on the picture

    How do you draw the ’-’ and ’ :’ to an image using FFmpeg so that a date in this 2018-12-12 T03:20:40 format can be on the image ?

  • How to get video stream information with RtspClientSharp library ?

    13 septembre 2022, par theateist

    I use RtspClientSharp to receive video frames from rtsp stream. The library allows just to receive the frames. But, I need to get information about the stream, such as bitrate, codec and etc. I don't see that there is currently an option for this in the library.

    &#xA;

      &#xA;
    1. Do I miss something or I need to modify the RtspClientSharp code to support this ?
    2. &#xA;

    3. Other alternative is to write a helper code in c++ which uses ffmpeg. I can use pinvoke to call c++ code which will connect to the rtsp stream (in addition to RtspClientSharp client), get the stream information and send it back to my c# code. Is this a better alternative ?
    4. &#xA;

    &#xA;