Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (28)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6394)

  • hevc : store the escaped/raw bitstream in HEVCNAL

    25 janvier 2015, par Hendrik Leppkes
    hevc : store the escaped/raw bitstream in HEVCNAL
    

    Hardware Accelerators require access to the escaped bitstream.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/hevc.c
    • [DBH] libavcodec/hevc.h
  • codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError : 'ascii' codec can't decode byte 0xc2 in position 318 : ordinal not in range(128)

    6 janvier 2017, par dtidy

    I am trying to open and readlines a .txt file that contains a large amount of text. Below is my code, i dont know how to solve this problem. Any help would be very appreciated.

    file = input("Please enter a .txt file: ")
    myfile = open(file)
    x = myfile.readlines()
    print (x)

    when i enter the .txt file this is the full error message is displayed below :

    line 10, in <module> x = myfile.readlines()
    line 26, in decode return codecs.ascii_decode(input, self.errors)[0]
    UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 318: ordinal not in range(128)
    </module>
  • position subtitles in the middle of the video height using ffmpeg

    9 août 2023, par Maor Cohen

    Assume my video resolution is 848x480. I add subtitles on the video and I want it to be positioned on the middle of the video. How to do it ?

    &#xA;

    ffmpeg -y -i video.mp4 -filter_complex [0:v]subtitles='subtitles.srt:force_style='FontName=opensans_extrabold',fontsize=30' -c:a copy -preset superfast -y output.mp4

    &#xA;

    This command positions the subtitles at the bottom of the video. I tried using marginV=240 (half of the height) and it positions the subtitles on the top of the video

    &#xA;

    Edit : I can use Alignment=10 but I want to control the height by pixels and not always in the middle

    &#xA;