Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (72)

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

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

  • 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 ;

Sur d’autres sites (11357)

  • ffplay - how to have video and audio waveform [duplicate]

    19 février 2018, par francis

    This question already has an answer here :

    I’ve been trying out various commands trying to figure out how to have a stack of video and audio waveform according to : https://trac.ffmpeg.org/wiki/FancyFilteringExamples#waveform

    Video only :

    ffplay -i abc.mp4 -vf "split[a][b];[a]waveform=e=1,split=1[c];[c]crop=in_w:16:0:0,lutyuv=y=val:v=180[high]; [b][high]vstack=2"

    Audio only :

    ffplay -f lavfi 'amovie=april.flac,asplit=2[out1][a]; [a]showwaves=s=640x240[waves]; [waves] vstack[out0]'

    But there isn’t any that combines and shows the top half as video and bottom half as the audio waveform. Is it possible ?

  • lavc/adpcm : THP : don’t use the ADPC/SEEK table when not seeking

    20 juin 2015, par Rodger Combs
    lavc/adpcm : THP : don’t use the ADPC/SEEK table when not seeking
    

    This is almost certainly closer to how the actual Nintendo players work,
    and fixes some output pops in files with blank ADPC/SEEK tables (like
    those from brawlcustommusic).

    • [DH] libavcodec/adpcm.c
    • [DH] tests/ref/fate/adpcm-thp
  • FFmpeg with Python opens up a command prompt

    9 juin 2019, par user9970503

    I wrote a Python code for extracting information and key frames of a video using FFmpeg. I also created a GUI for it using WxPython. After this, I created an executable file for Windows OS using Pyinstaller. However, when I run the executable and try to start the frame extraction process from the GUI, the command prompt pops up, stays for a while and then disappears. This goes on for as long as the extraction process runs.

    Pyinstaller provides an option for launching the executable without a command prompt using -w option. I’ve already tried that. I’ve FFmpeg installed on my PC and I’m running it using Python’s subprocess.Popen(). So I’m basically using ffmpeg.exe on my PC to extract information and frames from the video and pass it to my Python script for further processing.

    base_cmd = 'ffmpeg -hide_banner -i "{}" -ignore_editlist 0 -map 0:v:0 -c copy -f null -'.format(filename)

    vid_info_proc = subprocess.Popen(base_cmd,stdin=subprocess.DEVNULL,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)

    vid_info = vid_info_proc.communicate()[0].decode("utf-8")

    The command used for generating the exe file is :

    pyinstaller extract.py -w --clean