Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (38)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10950)

  • Redirect stderr and stdout from ffmpeg to a file in Python with subprocess

    9 novembre 2018, par Georgе Stoyanov

    I am trying to redirect both the stderr and stdout of a ffmpeg command to a file and to suppress them when executing the Python script. This is my code :

    import subprocess, shlex

    cmd = 'ffmpeg -hide_banner -i input.mp4 -c:v libx264 -b:v 2M -c:a copy enc_out.mp4'

    with open("ffmpeg_out.txt", 'w') as log:
       ffmpeg_cmd = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE)
       ffmpeg_stdout = ffmpeg_cmd.communicate()
       for i in range(len(ffmpeg_stdout) - 1):
           log.write(str(ffmpeg_stdout[i]) + "\n")

    So in general I want to do something similar to ffmpeg -hide_banner -i input.mp4 -c:v libx264 -b:v 2M -c:a copy enc_out.mp4 &> ffmpeg_out.txt. So currently in the ffmpeg_stdout I have only (b'', None) and the stdout and stderr are both printed when executing the script.

  • http: make caching of redirect url optional

    27 décembre 2021, par erankor
    http: make caching of redirect url optional
    

    added "cache_redirect" option to http.
    when enabled, requests issued after seek will use the latest redirected
    url.
    when disabled, each call to seek will revert to the original url that
    was sent to http_open.

    currently, the default remains 'enabled', until the next major
    libavformat bump, where it will change to 'disabled'.

    • [DH] libavformat/http.c
    • [DH] libavformat/version.h
  • how to redirect adb screenrecord output to pc(windows/linux) storage

    30 novembre 2018, par asullaherc

    In linux, I use following code to cast android screen to pc, it work well

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | ffplay -

    so I think exist way to redirect screenrecord output to pc storage, so I try following code

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" >> /tmp/t.mp4

    but the output video file cannot be opened by vlc and google-chrome, how to fix it ?

    ffplay is belongs ffmpeg, so I guess exist similar cli in ffmpeg to output input video streaming into video file