Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (45)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • subprocess.Popen() write stdout to logfile

    16 décembre 2019, par srt243

    I am using the following command to redirect ffmpeg output to terminal and text file.

    p1 = subprocess.Popen (['ffmpeg', 'some_ffmpeg_command', '-f', 'mpegts', 'outfile.ts'], stdout=subprocess.PIPE, stderr=STDOUT, universal_newlines=True)
    for line in p1.stdout:
       sys.stdout.write(line)
       logfile.write(line)
    p1.stdout.close()
    p1.wait()

    The code works fine until a scenario where manual intervention is required. For example, if the file outfile.ts already exists, then the following dialogue is not displayed in console,
    File 'Desktop/mytestfolder/outfile.ts' already exists. Overwrite ? [y/N]

    Any idea what’s wrong with the above please ?

  • ffmpeg : Don’t try and write sdp info if none of the outputs had an rtp format.

    2 novembre 2015, par Simon Thelen
    ffmpeg : Don’t try and write sdp info if none of the outputs had an rtp format.
    

    Fixes a segfault when trying to write nonexistent rtp information.

    Signed-off-by : Simon Thelen <ffmpeg-dev@c-14.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg.c
  • How to write incoming frames to file without touching in ffmpeg ?

    22 octobre 2012, par frankish

    I am able to read frames from av_open_input_file and decode and reencode it with another codec and save to file.

    Now, I want the same thing, except i don't want to decode or reencode. I want to do av_interleaved_write_frame on the just read frame to file. To do this, i need to set AVOutputFormat

    AVOutputFormat *fmt ;
    fmt = av_guess_format(NULL, filename, NULL) ;

    However, i can not supply a filename, because it is a remote stream. So, is there any way to generate AVOutputFormat from the current AVFormatContext which already reads input frames ? So i can write the same frame to the output file from any part of it (not necessarily from the beginning) in the correct way.

    To summarize : I need to write the just read frame to the file without decoding and reencoding. (I will open that file another time to be able to play that file)

    Any ideas ?