Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (71)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8156)

  • Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’

    4 février 2014, par Michael Niedermayer
    Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
    

    * commit ’e46ad30a808744ddf3855567e162292a4eaabac7’ :
    vp8 : use a fixed-size edge emu buffer

    Conflicts :
    libavcodec/vp8.c
    libavcodec/vp8.h

    See : face578d56c2d1375e40d5e2a28acc122132bc55
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
  • how to stream from multiple unknown-beforehand mp4 files to html5 video tag

    2 avril 2017, par Lana Nova

    I would like to enable the following flow :

    1. segment a video stream from a webcam using ffmpeg into mp4 files,
    2. transform those video files using opencv
    3. stream the resulting mp4 files using html5 video tag

    I found that for #3 above I can use ffmpeg to transcode to HLS format :

    sudo ffmpeg -i /tmp/edge-data/part-00000000.mp4 -profile:v baseline -level 3.0 -s 640x360 -start_number 5 -hls_time 10 -hls_list_size 0 -f hls /var/www/html/playlist.m3u8

    and then use videojs to augment the html5 video tag and point it at the m3u8 playlist file generated by the ffmpeg command above.

    My problem is that I have multiple mp4 files that are not known in advance. So, in a way, I need to be continuously adding items to the m3u8 playlist file.

    I found I can do it manually by removing the EXIT subsection of the m3u8 file and appending paths to new .ts files manually. Is there an option to do that with ffmpeg instead ?

    Is there an easier way to accomplish what I’m trying to do here ?

    Thanks !

  • avcodec/vc1 : change the internal ordering of blocks within a macroblock

    20 juin 2018, par Jerome Borsboom
    avcodec/vc1 : change the internal ordering of blocks within a macroblock
    

    The overlap filter needs to cover a full macroblock vertical edge when the
    FIELDTX value for two neighbouring macroblocks is not equal. By changing
    the internal ordering of the blocks from row major to column major, we do
    not need to reinterlace a FIELDTX coded macroblock before running the overlap
    filter.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_block.c