
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (94)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar 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 ;
Sur d’autres sites (13634)
-
How to transcode a stream of data using FFMpeg (C#)
17 novembre 2019, par SylensHow can I send in a stream of bytes which is MP3 audio to FFMpeg and get the output to a stream of PCM bytes ? I do not want to write the incoming stream to a file and let FFMpeg work on the file. I want the transcoding to happen in real-time.
I am aware that we can pipe in a stream of data to FFMpeg using the pipe command, how can I stream the data from my C# program.
Assuming I have an array of bytes.
-
Encode Android AudioRecord raw pcm data to other format using ffmpeg
31 juillet 2013, par crazyI am using AudioRecord class to read the data in bytes. Since the data received in the AudioRecord.read(byte[], int, int) is in raw form(too big), I want to encode it in some other compressed format like Vorbis(.ogg) using ffmpeg C Api. I have compiled the libffmpeg.so file which I will call through JNI. I want to know how this will be done.
After successfully encoding I want to create a video with this same audio and a single image attached to it.
Thanks.
-
Get CC(Closed Caption) data from video file using ffmpeg
18 septembre 2014, par mail2vgunaI am using the following ffmpeg command to extract the CC(Closed Caption) data from .ts file.
ffmpeg -i input.ts -an -vn -bsf:s mov2textsub -scodec copy -f rawvideo sub.txt
FFMPEG -i input.ts -vn -an -codec:s:0.1 srt sub.srt
ffmpeg -threads 4 -i input.ts -vn -an -codec:s:0.2 srt englishSubtitle.srtBut i did not get the cc data, its says "invalid frame dimensions 0x0" error.
Help me to extract the cc data from .ts file using ffmpeg.