
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (101)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5337)
-
Coordinates with file format .ASS
29 mai 2024, par AlexI'm grabbing my text coordinates that I want to use for the file format .ASS and for centering on a 1080 by 1920 video, I have an application that displays where the text is on the video and can retrieve the position, an example of centered position is 310 by 800. When I try to set the position of the text inside the .ASS with those positions it doesn't write the caption where is meant to be. Could some explain how a .ASS positioning works. If use 200 px by 200 px as positioning it places it way further than the center even though the video its a 1080x1920 video, shouldn't it be placed before the center position of the video ?


This is how my .ASS file looks like, I'm using ffmpeg to write the subtitles into the video :


[Script Info]
Title: Video Subtitles
ScriptType: v4.00+
Collisions: Normal
PlayDepth: 0
PlayResX: 1080
PlayResY: 1920


[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BorderStyle, Encoding
Style: Default, Segoe UI,9,&H00FFFFFF,&HFFFF00,&H00FFFFFF,0,0
Style: Background, Segoe UI,9,&H00FFFFFF,&H000000FF,&H00000000,3,0

[Events]
Format: Start, End, Style, MarginL, MarginR, MarginV, Text
Dialogue: 0:00:00.00,0:00:05.00,Default,0,0,0,{\pos(275,876)} {\bord5\3c&H000000&\fs90}LISTEN IN {\r}




- 

- Edit : I've added the playresx and y, but the text is still not where its meant to be. To add a bit more context, I have a scene in PyQT that uses a coordinates system to place text over videos, for this text its saying that its at the x axis of 275 and y axis of 876. When I use those coordinates for the .ASS text it doesn't show the same position. Also the scene in which the video and the text is in, its 1080 by 1920, this images show what I want and what I'm getting :








-
avcodec/hevc_filter : Pass HEVCLocalContext when slice-threading
29 juin 2022, par Andreas Rheinhardtavcodec/hevc_filter : Pass HEVCLocalContext when slice-threading
The HEVC decoder has both HEVCContext and HEVCLocalContext
structures. The latter is supposed to be the structure
containing the per-slicethread state.Yet that is not how it is handled in practice : Each HEVCLocalContext
has a unique HEVCContext allocated for it and each of these
coincides with the main HEVCContext except in exactly one field :
The corresponding HEVCLocalContext.
This makes it possible to pass the HEVCContext everywhere where
logically a HEVCLocalContext should be used.This commit stops doing this for lavc/hevc_filter.c ; it also constifies
everything that is possible in order to ensure that no slice thread
accidentally modifies the main HEVCContext state.There are places where this was not possible, namely with the SAOParams
in sao_filter_CTB() or with sao_pixels_buffer_h in copy_CTB_to_hv().
Both of these instances lead to data races, see
https://fate.ffmpeg.org/report.cgi?time=20220629145651&slot=x86_64-archlinux-gcc-tsan-slicesSigned-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Using ffmpeg to convert audio from Red5
19 août 2014, par Chintan PatelI am facing some problems in my project.
In my project, I need to implement microphone integration with RED5 server using Actionscript which is used to store the audio stream on server and after that I used ffmpeg in java code to convert the flv file to mp3.
I am facing 2 problems here :
-
The recorded audio creates .flv file which is currepted.
-
When I try to convert the .flv to .mp3 using ffmpeg, it gets stuck until I stop the Red5 server.
Here is my code of both places. Please let me know where I am doing wrong.
Actionscipt to record microphone audio and stream on red5 :
private function initConnection():Void {
trace("Connecting...");
nc = new NetConnection();
nc.client = this;
nc.addEventListener(NetStatusEvent.NET_STATUS, onNetConnectionStatus);
nc.connect("rtmp://127.0.0.1/test");
this.mic = Microphone.getMicrophone();
if (this.mic != null) {
this.mic.rate = 44;
mic.setSilenceLevel(0);
mic.gain = 100;
mic.setUseEchoSuppression(true);
mic.setLoopBack(true);
}
}To Send on Red5 :
public function startSending( nc: NetConnection, filename:String ) {
ns = new NetStream(nc);
ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStreamStatus);
ns.publish(filename, 'record');
ns.attachAudio(mic);
}To Stop recording/sending :
public function stopSending() {
mic.setLoopBack(false);
ns.attachAudio(null);
ns.close();
}The resulting .flv stored on server which is currepted.
Not to convert .flv into .mp3, I have used ffmpeg in my Java code as per following :
String ffmpegArgs[] = {executableDir,"-i",flvFile.getAbsolutePath(), "-vn", mp3File.getAbsolutePath()};
Process process = new ProcessBuilder(Arrays.asList(ffmpegArgs)).start();This starts the file conversion, but it gets stucked. After some time when I stop the server, it immediately shows the converted file.
Please let me know, where I am doing wrong. -