
Recherche avancée
Autres articles (70)
-
Gestion générale des documents
13 mai 2011, parMé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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (12162)
-
Add data stream on MP4
7 août 2016, par Ron YadgarIm interesting to add some data on MP4 container, each time interval (similar to subtitle).
Is there any standard or open source that I can use ? -
Convert raw PCM data to video ?
2 mai 2013, par user1801247I have file consisting of raw PCM data (no headers). I have been able to successfully play this file by opening it in Audacity (by importing the raw data).
This file (as part of a game), apparently contains a video at the end of the file.
I was hoping to be able to play this PCM data as a video without regard for headers as Audacity was able to do for audio.
I took a look at
ffmpeg
to convert the .wav/.pcm to .mov, but there are no examples of going from audio -> video (an understandably rare scenario).Are there any tools out there to play my data as a video, without regard for validity ?
-
Getting color mismatch while converting from NV12 raw data to H264 using FFMPEG
29 janvier 2019, par Harshil MakwanaI am trying to convert NV12 raw data to H264 using hw encoder of FFMPEG.
to pass raw data to encoder I am passing AVFrame struct using below logic :
uint8_t * buf;
buf = (uint8_t *)dequeue();
frame->data[0] = buf;
frame->data[1] = buf + size;
frame->data[2] = buf + size;
frame->pts = frameCount;
frameCount++;but using this logic, I am getting, color mismatched H264 data,
Can someone tell me , How to pass buffer to AVFrame data ?
Thanks in Advance,
Harshil