Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (74)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

Sur d’autres sites (7144)

  • How to display transparent GIFs using AutoHotkey script when pressing CapsLock ?

    8 juillet 2024, par Juan dalton

    I am trying to create a script in which if you press the capslock key a gif image appears on the screen, but the gif image appears with a solid black background, it is not transparent, what am I doing wrong ?

    


    ; Variable to track the state of Caps Lock
global capslock_toggle := false

; Path to the GIF file with transparency
ImagePath := "C:\Path\To\Your\Folder\animation.gif"

; Path to ffplay (adjust this line with the path to ffplay.exe)
ffplayPath := "C:\FFmpeg\bin\ffplay.exe"

; Variable to store the ID of the ffplay process
global ffplayPID

; Function to show the GIF using ffplay
ShowImage() {
    global
    Run, %ffplayPath% -autoexit -loop 0 -vf "format=rgba" -x 200 -y 200 -noborder -window_title "GifWindow" %ImagePath%,, Hide, ffplayPID
}

; Function to hide the GIF by closing ffplay
HideImage() {
    global
    if (ffplayPID) {
        Process, Close, %ffplayPID%
        ffplayPID := ""
    }
}

; Detect Caps Lock key press and toggle actions
CapsLock::
capslock_toggle := !capslock_toggle
if capslock_toggle
{
    ShowImage()  ; Show the GIF
}
else
{
    HideImage()  ; Hide the GIF
}
Return



    


    enter image description here

    


    I try to convert gif to webm but it doesn't work either

    


  • a script for mac os terminal with user input

    10 décembre 2022, par Raghav

    I want to save m3u8 file from website to my local machine. For this I got the command as follows :
ffmpeg -i x -codec copy y.mkv
where x is the url of m3u8 playlist and y is name of output file
Is there a way I can automate the process of generating and executing this command using some program so that I can just enter the url of m3u8 file and name of output file and then automatically a command is generate and executed in macos terminal
Can someone please help ?

    


    I have created a file with .command which can be used to execute commands in mac os but I dont know how can I use it to create a variable command with different url and different name of file

    


  • Preferred way to make script directly executable

    25 février 2016, par David542

    I can run ffmpeg by executing the executable file in /bin :

    $ ~/bin/ffmpeg

    To be able to just do $ ffmpeg, one option would be to create an alias in my '~.bash_profile or $ sudo ln -s ~/bin/ffmpeg /usr/bin/ffmpeg. Is there a better way to do this, so that I can use ffmpeg in scripts and that command will be recognized ?