Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (78)

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

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

  • h264_loopfilter : Do not print value of uninitialized variable

    3 janvier 2016, par Diego Biurrun
    h264_loopfilter : Do not print value of uninitialized variable
    

    libavcodec/h264_loopfilter.c:531:111 : warning : variable ’edge’ is uninitialized when used here [-Wuninitialized]

    • [DBH] libavcodec/h264_loopfilter.c
  • 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
  • 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 !