Recherche avancée

Médias (91)

Autres articles (57)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (6078)

  • lavc/encode : add an encoder-specific get_buffer() variant

    23 mars 2022, par Anton Khirnov
    lavc/encode : add an encoder-specific get_buffer() variant
    

    Several encoders (roqvideo, svq1, snow, and the mpegvideo family)
    currently call ff_get_buffer(). However this function is written
    assuming it is called by a decoder. Though nothing has been obviously
    broken by this until now, that may change in the future.

    To avoid potential future issues, introduce a simple encode-specific
    wrapper around avcodec_default_get_buffer2() and enforce its use in
    encoders.

    • [DH] libavcodec/decode.c
    • [DH] libavcodec/encode.c
    • [DH] libavcodec/encode.h
    • [DH] libavcodec/mpegpicture.c
    • [DH] libavcodec/roqvideoenc.c
    • [DH] libavcodec/snow.c
    • [DH] libavcodec/svq1enc.c
  • fftools/ffmpeg : Add new variant source_no_drop to the force_key_frames option

    20 juin 2021, par Keyun Tong
    fftools/ffmpeg : Add new variant source_no_drop to the force_key_frames option
    

    Suggested-By : ffmpeg@fb.com

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
  • Efficient way to create variant playlists from mp4 for HLS

    3 mars 2021, par nnaj20

    I am totally new to video encoding and options, and just learned about Apple's HLS requirements.

    


    So far, I've been able to get something working for my iOS app. However, I find the entire process to be very slow and manual. Now, having to repeat this for several more locales (video translations), I can't imagine there isn't a better way.

    


    Controlling bitrate

    


    To have control over the bitrate, I use HandBrake to create a new .mp4 file with the appropriate video encoder setting, for each bitrate I want (192k, 400k, 1m, etc.). THEN, I move onto creating the playlists. This alone takes several minutes—is there a better way ? tsrecompressor seemed close, but it just streams to a local port and doesn't save any playlists.

    


    Creating playlists from MP4

    


    Then I use Apple's suite of command-line tools (mediafilesegmenter, variantplaylistcreator, mediastreamvalidator, hlsreport) to generate the playlists, combine into a master playlist, validate, etc. I suppose this part could be somewhat automated with a script. I've seen others use FFMPEG, but I think the latter 3 Apple tools would still need to be sequentially applied.

    


    Do you see anything that can be obviously optimized ?