Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (19)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (6027)

  • ffmpeg convert any audio format to flash player compatible audio

    7 juillet 2014, par Gaurav Singla

    Right now i am streaming mp3 files using Red5 Server but the problem is flash player is not able to play some of the audio files.
    So is there any way to convert every audio file uploaded by user to flash player compatible using ffmpeg ?

  • Is there iOS HLS player that can read #EXT-X-PROGRAM-DATETIME tag in manifest

    12 juillet 2017, par ukits

    about HLS streaming in iOS,

    for calculating the delay between streaming server and iOS client, it need to read #EXT-X-PROGRAM-DATETIME tag in HLS chunk’s manifest.

    iOS AVPlayer object doesn’t support to read tags of incoming streaming.

    Because iOS AVPlayer object doesn’t support to read tags of incoming streaming, we have to look for open source or commercial HLS player library that can read tag using ffmpeg or the other.

    If you have a library you know, recommend it please.

  • Write text on the video and display on the player with the best conditions

    10 novembre 2016, par Nabi K.A.Z.

    I have this code for watermark a text on the video :

    ffmpeg -i out.mp4 -vf "drawtext=fontfile='arialbd.ttf': font=arialbd: text='SiteName.local': fontsize=18: fontcolor=white: x=10:y=h-th-10" -acodec copy -y out2.mp4

    Then I want to play it by jwplayer.

    When I input a video with normal size (ex. 500x300px), all things is ok and it’s preview player :

    500x300px
    (The text on image is with good size.)

    But if the video has big size (ex. 1500x900px) it’s preview player :

    1500x900px
    (The text on image is illegible.)

    Or if the video has very small size (ex. 150x90px) it’s preview player :

    150x90px
    (The text on image is covered on video.)

    I know reason of this happen is fontsize in ffmpeg command.

    Now I thinks must get width and height of the video and then with calculation and discovery of a formula, and find the best fontsize for usage. If you agree, what’s the best formula ?!

    Or maybe I should not use fontsize ! and I can use parameters in ffmpeg command for reach the goal ?!

    What’s your idea ?