Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (71)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

Sur d’autres sites (5993)

  • Installed codec not working ffmpeg

    25 février 2015, par Chris James Champeau

    I have ffmpeg installed on my server, I can trancode mp4 and it works great.

    However, I have installed the Theora codec as it explains here, http://cumulusclips.org/docs/install-ffmpeg-x264-on-centos/#Theora_Codec

    When I run this code

    FFREPORT=file=ffreport.log:level=32 /usr/local/bin/ffmpeg -nostdin -report -i testinput.mp4 -y -b 250k -deinterlace -vcodec libtheora -acodec libvorbis testoutput.ogg

    I get the following error Unknown encoder 'libtheora'

    Is there something I missed, any help would be appreciated

  • Creating 3D animated map video

    2 mars 2024, par Bob Stone

    https://docs.mapbox.com/mapbox-gl-js/example/query-terrain-elevation/

    


    I did the same animation in the link using react native. Now I want to export this to a video.

    


    I want user to click a button then everything to be done at backend. For example, send post request to
/api/createMapVideo and request body contains the coordinates of MarkerViews, polyLines etc... and use theese data to create animated map video then store it on cloud and after doing all of that send the url of video in the cloud as response. Like relive app's 3d videos.

    


    How can I achieve this functionality ? I want to create animated map video on backend. Or are there better solutions ?

    


  • Value range for AVCodecContex::global_quality, ::compression_level and AVFrame::quality

    27 février 2019, par Bim

    I’m trying to compress video using different codecs (WMV, MP4, H264, VP8, VP9) using FFmpeg / libav. I’m unsure on how to set the global and per-frame quality values. Even the range of values is unclear to me. The docs are not helpful.
    Currently I’m using :

    AVCodecContex::global_quality = FF_QP2LAMBDA * quality; // no idea about range, default seems to be 0
    AVCodecContex::compression_level = 0; // There is FF_COMPRESSION_DEFAULT (-1), which seems to be the default
    AVFrame::quality = FF_LAMBDA_MAX * quality; // docs say range is [1, FF_LAMBDA_MAX], default seems to be 0

    quality is in the range [0,1], where 0 means best image quality. Only 0 seems to do anything for me and leads to ok-quality videos. All other values produce low-quality output.
    Any clarification on how to set these values is welcome.