
Recherche avancée
Autres articles (57)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...) -
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 (...)
Sur d’autres sites (5773)
-
ffmpeg command slow zoom in according to duration. (example) i define -t 120 than picture should be zoom in for two minute softly
12 septembre 2018, par Zeeshan Sheikhi have a command that convert the image into video with soft zoom out effect, command is :
ffmpeg -loop 1 -i vide.mp4 -vf "zoompan=z=’1.5-on/duration*0.2’:d=325" -t 30 output.mp4
. now i want soft zoom in effect rather than zoom out, can somebody help to achieve result. Thanks in advance
-
get the bit stream per frame from ffmpeg record
1er mai 2021, par Aung Myo HtutIs there any way to get the bitstream per frame captured by ffmpeg. I want to capture with the raspberry pi camera in real-time and get the bitstream of the frame encoded by H.264 like I frame and P frame from the bitstream of ffmpeg. Because I want to stream frame by frame from the camera node to the server. Thank you in advance.


-
ffmpeg filter in my own application
26 juin 2018, par user25571How can I use one of filters from ffmpeg library in my own application. In fact, I only wanna detect silence in my audio files and so I must use
af_silencedetect.c
file. This file is one of ffmpeg filters that can be utilized with-af silencesetect
command.Therefore my obvious question is : "What’s step-by-step procedure in using this file in my own application and which dependencies I must add to my MSVC project ?"
Your points are appreciated in advance ....