Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (104)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10795)

  • ffmpeg add long text in multiline automatically

    30 juillet 2016, par Pranoy C

    I am using ffmpeg to add text to a video. Currently this command works for me :

    ffmpeg -y -i cut.mp4 -vf drawtext="fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: text='Stack Overflow': fontcolor=white: fontsize=24: box=1: boxcolor=black@0.5: boxborderw=5: x=(w-text_w)/2: y=main_h-(text_h*3)" -codec:a copy output.mp4
    1. If I have a very long text "Stack Overflow is awesome and this is a test of long text", is there a way to automatically make it wrap without me having to insert new line characters in the text ?

    Currently such a text just goes off the screen if I don’t have newline characters.

    1. Is there a way to specify maximum width & height for the text ?
  • Combining video and audio from multiple sources using ffmpeg

    11 juillet 2015, par Raheel Khan

    I am trying to add an audio file to a video file using ffmpeg.

    ffmpeg.exe -i "Video.avi" -i "Wave.wav" -map 0:0 -map 1:0 -vcodec copy -acodec copy "Output.mp4"

    The above parameters work but the output file length is the greater of the two input lengths. How can I specify using the video’s length instead ?

  • combining 2 trimmed audio files in python not working

    22 mars 2021, par Leo29 Max

    Ive been trying to get this to work for a while to no results.

    


    import tkinter.filedialog as filedialog
import soundfile as sf
import math    

yeah = filedialog.askopenfilename(initialdir = "/",title = "select wav file")
f = sf.SoundFile(yeah)
length = len(f) / f.samplerate
stream = ffmpeg.input(yeah)
first = stream.audio.filter('atrim',start=0,end=1)
out = ffmpeg.output(first, "output2.wav")
ffmpeg.run_async(out)


    


    any help is appreciated ! thanks.