Advanced search

Medias (91)

Other articles (112)

  • Gestion générale des documents

    13 May 2011, by

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 April 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 (...)

On other websites (12231)

  • FFMPEG Combining images to video and streaming in one command line

    12 July 2017, by Brindha Kanniah

    Currently, using ffmpeg, I am using two commands on my Terminal to:

    1) create a video from a bunch of images:

    ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4

    2) stream the video to a udp address:

    ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550

    How can I combine these two commands, into one single ffmpeg command?

    A concern I have is that it takes a couple of minutes to generate the video from the images. Therefore, these commands have to happen serially, whereby the second command waits a few minutes for the first command to be completed, before it ensues.

  • running command line programs in background using python os or subprocess module

    12 May 2017, by user3735489

    I am trying to run a command using os or subproccess module in python. the command prompt window briefly flickers before terminating. Is there a way of eliminating that popping up of command prompt window..?

    For example:

    os.system("ffmpeg -i output.wav output.flac")

    Is there a way I can run this in the background so that user may not notice this..?

    I am running windows 7 with python 2.7.

  • avcocdec/mpegaudio_parser: add MP3 ADU headers parser

    13 February 2015, by Gilles Chanteperdrix
    avcocdec/mpegaudio_parser: add MP3 ADU headers parser
    

    Reviewed-by: Thomas Volkert <silvo@gmx.net>
    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/mpegaudio_parser.c
    • [DH] libavcodec/mpegaudiodecheader.c
    • [DH] libavcodec/version.h