
Advanced search
Medias (2)
-
Valkaama DVD Label
4 October 2011, by
Updated: February 2013
Language: English
Type: Picture
-
Podcasting Legal guide
16 May 2011, by
Updated: May 2011
Language: English
Type: Text
Other articles (81)
-
Gestion des droits de création et d’édition des objets
8 February 2011, byPar 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 May 2013, byL’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 (...) -
Keeping control of your media in your hands
13 April 2011, byThe 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 (...)
On other websites (6845)
-
Does android support .m4a metadata?
23 October 2016, by David BarishevIm using taglib-sharp-portable to tag audio files in my app. My audio files are .acc, which are inboxed in a .m4a format.
I have no option but to use this format, since i’m extracting the audio from a Video file (.mp4/.webm), based on using this SO answer. I can’t re encode the music stream, since it will take a lot of time on an cellular device.
The problem i’m facing is that the music player doesn’t recognize the tags, even though they are tagged correctly. If i pull the file from the device, and view it on my Windows PC, i can see the tags fine.Here is the code im using to tag the file:
public static async Task tagFile(File musicFile, string name, string songID, Context c, SongDownloadNotification nf = null)
{
var imageFilePath = await DownloadThumbnailImage(songID, c, nf);
string[] songDetails = GetSongDetails(name);
Log.Verbose(tag, "Exstraced song Details. Artist Name: {0}, Song Name: {1}", songDetails[0], songDetails[1]);
var fsMusic = new System.IO.FileStream(
musicFile.CanonicalPath,
System.IO.FileMode.Open,
System.IO.FileAccess.ReadWrite,
System.IO.FileShare.ReadWrite,
4096,
true);
TagLib.File tagFile = TagLib.File.Create(new TagLib.StreamFileAbstraction(musicFile.CanonicalPath, fsMusic, fsMusic));
tagFile.Tag.Clear();
tagFile.Tag.Performers = new[] { songDetails[0] };
tagFile.Tag.AlbumArtists = new[] { songDetails[0] };
tagFile.Tag.Title = songDetails[1];
tagFile.Tag.Album = songDetails[1];
var fsImage = new System.IO.FileStream(
imageFilePath,
System.IO.FileMode.Open,
System.IO.FileAccess.ReadWrite,
System.IO.FileShare.ReadWrite,
4096,
true);
tagFile.Tag.Pictures = new[] { new TagLib.Picture(new TagLib.StreamFileAbstraction(musicFile.CanonicalPath, fsImage, fsImage)) };
tagFile.Save();
Log.Debug(tag, "Succesfully added tags to file");
fsMusic.Close();
fsImage.Close();
if (!new File(imageFilePath).Delete())
Log.Warn(tag, "Couldnt delete tmp file");
else
Log.Verbose(tag, "Deleted thumbnail file succesfully");
}These question came to me:
- Is my choice of encapsulating the raw .acc file in .m4a file good ? The format im looking into, is audio only, is .m4a overkill for it ?
- Does android support reading tags of .m4a file ? If so what did i do wrong with my code ?If not, how can i add tags to .acc ( or some other ’parent’ format), that android supports, and i would not need to re encode it ?
-
AForge FFMPEG Video operation issue
9 January 2017, by BerkayI have a problem actually an issue about making video of images(captured frames). I am using nVLC to capture my IP camera’s video content. I managed to take these and show them in my application whenever a new frame comes up. But I also need to convert them whenever a user wants to save the record. This record should be long enough like 1-2 hours.
So I decided to use AForge lib. In this library there is a class called
VideoFileWriter
.It does what I want. But here is the problem. I am getting 24-25 frames per second and I am drawing it on the screen. This causes a little bit of an overhead to my system (Especially when I am streaming 6 IP cameras to my screen). My CPU is utilized like %50-60 and i am using 500-550 MB of RAM while streaming 6 IP cameras and drawing to my screen.So I came up with two ideas,
- I can process (write to a video file) each frame whenever I capture. (If user starts recording)
- Or, I can store Bitmaps (captured frames) whenever user starts recording. Then I can process these list of (might be an array or List<> or another container etc...) later.
The first approach will destroy my pc, because read/write is very very expensive operations for computers, so this will put me in a very bad position.
Second approach will destroy my ram, because I may end up with 3600*25 frames for each bitmap list. But seems to be the better choice to me.
Does anyone have any advice on this topic?
-
Data Privacy Issues to Be Aware of and How to Overcome Them
9 May 2024, by Erin