Recherche avancée

Médias (91)

Autres articles (40)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (4188)

  • ffmpeg does not follow vframes

    15 décembre 2020, par oo92

    I'm trying to take screenshots of Twitch streams through the API using ffmpeg. I want to take 500 screens per category but I am getting an average of 50 screenshots. This is what I have :

    


    username = streams_now[i]['channel']['name']
id = streams_now[i]['id']
game = streams_now[i]['game']
game = game.translate(str.maketrans({':':'-', ' ':'-', "'":'', '!':'', '&':'_', '.':'', '+':'_'}))
streaming = streamlink.streams('http://twitch.tv/' + username)
stream = streaming["best"].url
dir_path = current_dir + '/logorec-dataset/' + game
os.mkdir(dir_path)

subprocess.call('ffmpeg -i ' + stream + f' -ss 20 -threads 2 -vframes 500 -r 1 -f image2 -strftime 1 {dir_path}/%Y%m%d%H%M%S_' + str(id) +'_'+ '.jpg&', shell=True)



    


  • How does winget set permanent aliases ?

    9 septembre 2023, par ninbura

    When I install something like ffmpeg with winget, it sets permanent aliases for ffmpeg, ffplay, & ffprobe.

    


    winget install gyan.ffmpeg


    


    It doesn't look like it's adding anything to my path environment variable. If I use the Set-Alias utility said alias is ephemeral, only lasting until the end of the current session. Eventually I found that I can use my $profile to denote a list of aliases that instantiate every time I launch my shell.

    


    Does winget do the same thing just with a different "profile" file ?

    


  • FFMPEG command fails in php but runs in terminal [closed]

    13 juillet 2021, par victor ukafor

    I'm writting some logic that requires video manipulation, each time i try to run ffmpeg command with Process (or some other php in-built function for running shell command), the command fails with WARNING : library configuration mismatch but it runs without any warning on my terminal. Some tutorials suggest I unistall libavcodec-ffmpeg-extra56 or libavcodec-ffmpeg-extra57 on machine. I have done that still no changes.

    


    enter image description here