
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (28)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3291)
-
How do I concatenate a specific audio recording to multiple different ones (at the beginning of each), in bulk ? [closed]
28 septembre 2023, par catofwsSo I have an audio recording that's something like 10 seconds long, right ?


That single audio recording needs to be added to the beginning of a lot of different ones, and I need to somehow be able to do it in bulk.


I am talking about something very simple, literally adding that one specific 10 second long audio recording I have mentioned earlier to the beginning of the other ones, not overlapping with anything, thus extending the total duration by 10 seconds or so.


Tried Audacity, works, but it's a long process that doesn't fit my purposes. If audacity can do it I know for sure that a simple script can accomplish this one very specific very simple task.


I don't code.


EDIT : Wanted to add that I am not expecting someone to write a whole script for me, but rather point to the right direction. I have a very basic idea of Python and I know that for my specific purpose I would need to use FFMPEG. I want someone to point me towards the right direction, what functions & libraries would I need to use to make such a script ?


-
Using libav libraries directly in c++ project instead of using Ffmpeg command external process [closed]
9 mai 2024, par dhatchinai'm receiving input as raw H264 NAL units contiguously from one port and mp2 audio from the another port .i need to multiplex this both and encode as a mpeg2 transport stream. To achieve this now i'm executing required ffmpeg command as a process inside my c++ project and i get the output perfectly. but, the problem is i can't install ffmpeg in client system manually and i felt just for this single purpose using ffmpeg takes more cpu utilization also and handling external process also bit not reliable.


so , i need to add required libav (ex : libavcodec ,libavformat ) libraries in my project directly and compiling into a single project and calling the required functions for encoding and multiplexing process will increase the control of process and no need of installing ffmpeg. i need suggestion to do this. i'm using RHEL 8.3 and Thanks in advance


-
x86inc : Avoid using eax/rax for storing the stack pointer
20 décembre 2016, par Henrik Gramnerx86inc : Avoid using eax/rax for storing the stack pointer
When allocating stack space with an alignment requirement that is larger
than the current stack alignment we need to store a copy of the original
stack pointer in order to be able to restore it later.If we chose to use another register for this purpose we should not pick
eax/rax since it can be overwritten as a return value.