Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (91)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (7723)

  • ffmpeg and H264 confusion [closed]

    31 mai 2013, par Zhenya

    I am new in video encoding, and just starting to learn now. I am confused about the ffmpeg and H264

    • What are the differences of these ?
    • Is ffmpeg the encoder and H264 the
      codec ?
    • Is it possible to use H264 without ffmpeg or ffmpeg must be
      always used for encoding ?
    • Is there an alternative to ffmpeg ?

    Thanks

  • avdevice_capabilities_create This function is deprecated, what should I replace it ?

    24 juin 2024, par 中野梓喵

    I wanted to get the support information about the device as a string, but this function was completely abolished in ffmpeg 6

    


    int     avdevice_capabilities_create (AVDeviceCapabilitiesQuery **caps, AVFormatContext *s, AVDictionary **device_options)
void    avdevice_capabilities_free (AVDeviceCapabilitiesQuery **caps, AVFormatContext *s)



    


    Alternative solutions

    


  • Python Print Continuous output of Popen when reset character is used

    23 août 2022, par cclloyd

    I have a snippet of code that runs a video conversion using ffmpeg.

    


    I read the output to analyze it later in the application, and also want to print it to console, for user feedback.

    


    So I have

    


    p = Popen(cmd, stderr=STDOUT, stdout=PIPE)
while True:
    line = p.stdout.readline()
    if not line: 
        break
    print(line.decode('utf-8'), end='')

p.wait()
if p.returncode == 0:
    pass



    


    Which works, somewhat. It prints the initial output of the ffmpeg command, as those are simple print statements.

    


    But once the conversion starts, all the output is updated on one line, presumably using some reset character to move the cursor position back to the start of the line.

    


    Is there a way to continue to print that output ?