Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9752)

  • How to save ffmpeg stream with datetime

    18 janvier 2013, par user1800256

    I would like to write an output format from a ffmpeg encode line to save the stream in a SD card with date and hour.

    To simplify the question I write the following (just ignore the extras) :

    import subprocess, sus, os, datetime, time
    from subprocess import Popen, PIPE

    def call_command(command):
       subprocess.Popen(command.split('  '))

    call_command('ffmpeg -f video4linux2 -y -s qvga -r 24 -i /dev/video0 \
                 -vcodec mpeg2video /home/pi/webcam_+%Y/%m/%d_at_%H:%M:%S.mpg')

    I also tried another solutions like define firstly the filename and call it from the ffmpeg line but it doesen't work.

  • Anomalie #2929 : URLs Propre identiques sur un article et un événement (de cet article)

    18 janvier 2013, par marcimat -

    Je n’arrive pas à reproduire cette chose en local. Le titre de l’article en question était « Les Incroyables Comestibles à Angoulême ». J’ai beau créer autant d’événements que je veux, ils ont des urls différentes de l’article... Y a un truc (...)

  • ffmpeg quality issues

    4 mai 2012, par Chris Vincze

    I'm trying to encode MPEG2 files for broadcast. The spec is MPEG-2 @ 50Mbps with all frames as intra frames.

    So I've done a few experiments and have come across a conundrum.

    Setting the q flags like this :

    ffmpeg -i input.%04d.dpx -vcodec mpeg2video -pix_fmt yuv422p -intra -qmin 1 -qscale 1 -output.mpg

    gives a constant q=1.0 while transcoding and produces a file of approximately 25Mbps (although weirdly the file bitrate is given as : bitrate : 25551 kb/s while the actual stream is specified as 104857 kb/s)

    Duration : 00:01:29.95, start : 1.000000, bitrate : 25551 kb/s
    Stream #0.0[0x1e0] : Video : mpeg2video, yuv422p, 720x608 [PAR 608:405 DAR 16:9], 104857 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc
    Stream #0.1[0x1c0] : Audio : mp2, 48000 Hz, 2 channels, s16, 384 kb/s

    However, specifying a constant bit rate like this :

    ffmpeg -i input.%04d.dpx -vcodec mpeg2video -pix_fmt yuv422p -intra -b 50000k -minrate 50000k -maxrate 50000k -bufsize 2000000 -output.mpg

    gives a varying q whilst transcoding somewhere between 1 and 6. The resulting file is 50Mbps (in both the file and the video stream)

    However the quality of this file is not as good as the 25Mbps (as suggested by the q factor).

    So my question is how can I produce a file of 50Mbps AND q=1. It is my understanding that the q flags and the bitrate flags are mutually exclusive (I've tried running both).

    Thanks very much for your help.