Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (32)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6873)

  • avconv : remove a useless line

    6 avril 2014, par Anton Khirnov
    avconv : remove a useless line
    

    Doing anything with that field when we are doing streamcopy (so the
    encoder is not opened) should have absolutely no effect.

    • [DBH] avconv.c
  • ffmpeg works in command line but it doesn't work well in c#

    14 août 2016, par Ahmad Ali Mukashaty

    I want to stream movie via udp so I use this command line and it works well

    ffmpeg -re -i test.mkv -q 1 -vcodec libx264 -f mpegts udp://network:port

    but I want to run this command line using c# like this :

    process = new Process();        
    process.StartInfo.FileName = "cmd.exe";
    process.StartInfo.WorkingDirectory = @"c:\FFmpegTool\bin";
    process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
    process.StartInfo.Arguments = "/C ffmpeg.exe";
    process.Start();

    process.StartInfo.FileName = "ffmpeg";
    process.StartInfo.Arguments = "-re -i test.mkv -q 1 -vcodec libx264 -f mpegts udp://network:port";
    process.Start();

    it works but I can’t receive the stream

    why this commnand doesn’t work well when I use it in c# and what’s the different bettwen ranning command in cmd directly or using process class in c#

  • utvideoenc : properly set slice height/last line

    9 octobre 2014, par Christophe Gisquet
    utvideoenc : properly set slice height/last line
    

    Mimic decoder and obey sampling.

    Does not affect fate tests for utvideo.
    Fixes ticket #3949.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/utvideoenc.c