
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (98)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (18419)
-
avcodec/parser : use av_freep() to avoid leaving stale pointers in memory
1er novembre 2014, par Michael Niedermayer -
Google speech to text api is partially converting .flac file into text
12 juillet 2018, par Gemini JainSteps followed :
- Converted .mp3 to .flac using ffmpeg.
- Ran this command
gs://xxx/xxx.flac --language-code=en-US --async --encoding=FLAC --sample-rate=44100
. - After processing it, is showing result in JSON format, but its not relevant to audio file.
JSON result looks like :
{
"@type": "xxx",
"results": [
{
"alternatives": [
{
"confidence": 0.71890223,
"transcript": "I reports everybody."
}
]
},
{
"alternatives": [
{
"confidence": 0.5876879,
"transcript": "dear, it's your"
}
]
}
......
}]}Can please someone help me in figuring out why it is not converting the audio files correctly ? Am I missing any tags ?.
-
avcodec/parser : Don't return pointer to stack buffer
19 mars 2021, par Andreas Rheinhardtavcodec/parser : Don't return pointer to stack buffer
When flushing, the parser receives a dummy buffer with padding
that lives on the stack of av_parser_parse2(). Certain parsers
(e.g. Dolby E) only analyze the input, but don't repack it. When
flushing, such parsers return a pointer to the stack buffer and
a size of 0. And this is also what av_parser_parse2() returns.Fix this by always resetting poutbuf in case poutbuf_size is zero.
Reviewed-by : James Almer <jamrial@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>