Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (100)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (13659)

  • Revision 54434 : suppression des styles inline, et utilisation de classes, ce qui ...

    11 juin 2018, par cedric@… — Log

    suppression des styles inline, et utilisation de classes,
    ce qui permet aussi de differencier un peu le style en fonction de l’endroit ou on affiche les infos exifs

  • ffmpeg does not work with a large number of urls in the request

    2 avril 2023, par Hack team

    If i put one url in the array, everything works perfectly, but when i add more than one url to the array, it throws an error :

    


    HTTP error 403 Forbidden https://p16-sign-sg.tiktokcdn.com/tos-alisg-i-photomode-sg/2c182489bc4e42dcbb70f37a283cf5f1~tplv-photomode-image.jpeg?from=photomode.AWEME_DETAIL&x-expires=1681740000&x-signature=BaB75chVtpoZg6sE%2B0oWmxtzky0%3D https://p16-sign-sg.tiktokcdn.com/tos-alisg-i-photomode-sg/34cae24dad35476d96d8db03b46076b9~tplv-photomode-image.jpeg?from=photomode.AWEME_DETAIL&x-expires=1681740000&x-signature=RTyGbq%2BfLz3hNahtLJyaWycQtPI%3D: Server returned 403 Forbidden (access denied)


    


    However, if i put each of the urls one by one, then access is available and everything works perfectly

    


    It feels like ffmpeg makes one out of three urls and catches an error because of it. But I don't understand how to handle urls.

    


    My code :

    


    from PIL import Image
from io import BytesIO

import requests
import ffmpeg

def make_even(n):
    return n + n % 2

list_of_urls = [
    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-i-photomode-sg/2c182489bc4e42dcbb70f37a283cf5f1~tplv-photomode-image.jpeg?from=photomode.AWEME_DETAIL&x-expires=1681740000&x-signature=BaB75chVtpoZg6sE%2B0oWmxtzky0%3D",
    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-i-photomode-sg/34cae24dad35476d96d8db03b46076b9~tplv-photomode-image.jpeg?from=photomode.AWEME_DETAIL&x-expires=1681740000&x-signature=RTyGbq%2BfLz3hNahtLJyaWycQtPI%3D",
    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-i-photomode-sg/c2cb000f9332498caf6bd837f42e92c6~tplv-photomode-image.jpeg?from=photomode.AWEME_DETAIL&x-expires=1681740000&x-signature=4Zh5PFWNUYQhxQHuKM7P8rk8geU%3D"
]

response = requests.get(list_of_urls\[0\])
img = Image.open(BytesIO(response.content))

width, height = img.size
width = make_even(width)
height = make_even(height)

(
    ffmpeg
    .input(' '.join(list_of_urls), framerate=0.33)
    .filter('scale', width, height)
    .output('output.mp4')
    .run()
)


    


  • AAC encoder : fix assertion error re SF differences

    12 octobre 2015, par Claudio Freire
    AAC encoder : fix assertion error re SF differences
    

    Intermediate results can indeed violate SF delta. Instead of asserting
    there, just make the code safe, and assert on the final result.

    Also re-clamp SFs more often in short windows (which tend to violate
    the restriction when encoding the switch from one window to the other)

    • [DH] libavcodec/aaccoder_twoloop.h