
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (107)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (18858)
-
What's difference between using ffmpeg vs Native Hls to download M3U8 file ?
11 octobre 2017, par Mike RossI use
youtube-dl
to downloadM3U8
video (Not live streaming )
But when I download video usingFfmpeg
, if i interrupt download it’s not possible to resume downloads
When i use--hls-prefer-native
tag I’m able to resume downloads.
My question is what’s difference between the both ? And which is best between these two ?
Only difference I can find is that the video created usingNative Hls
has no thumbnail in Ubuntu File Manager !! -
Design Custom FFmpeg media player in Android for Allwinner A20 device
22 décembre 2016, par HardikI want to design one custom media player using FFmpeg library in android OS for Allwinner A20 custom board.
This custom board is having two playback devices HDMI and 3.5mm Jack. So I want to play same audio file to both devices simultaneously.
I can see device file for both sound card in /dev/snd/pcmC1D0p for HDMI and /dev/snd/pcmC2D0p for 3.5mm Jack. (Note : pcmC0D0p and pcmC0D0p using for some other audio zone)
I’m using tlv320aic3100 codec with I2s Interface for 3.5mm audio out Jack.
Using Android media player I’m not able to serve two sound cards simultaneously, So I’m thinking to design custom media player using FFmpeg library.
I need some predictions and possible challenges in this approach.
and
I would be very grateful if somebody could suggest step-wise procedure to do this. -
FFMpeg custom metadata not showing up using c++
22 novembre 2022, par Sourav DeyI am trying to add a custom metadata to a video recording using C++.

av_dict_set(&pMetaData, "title", "Cloud Recording", 0);

works fine and shows up in properties->details tab for the mp4 file in windows

But doing :

av_dict_set(&pMetaData, "random", "Cloud Recording", 0);

doesn't work.

Does anyone know what to do to write a custom metadata to a mp4 file using c++ ?


AVFormatContext *outContext;
av_dict_set(&outContext->metadata, "random", "Cloud Recording", 0);
avformat_write_header(outContext, null)