
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (38)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (3639)
-
How to bookmark a video, to skip the video to a cetain duration ?
17 août 2016, par Prasanth Kumar ArisettiI am encoding the incoming camera data, using x264 encoder and mpegtsmux to a filesink .ts files.
I am pushing the buffers to the pipeline, using, g_signal_emi_by_name.
Pipeline is something like this :
gst-launch-1.0 v4l2src ! videoconvert ! video/x-raw,width=720,height=576,framerate=25/1 ! x264enc ! mpegtsmux ! filesink location=test.ts
Now, for that video, i would like to add bookmarks for certain duration to directly skip the video to that duration, when click on that duration.
How can i add bookmarks to that video ?
-
ffmpeg command to insert the Static frames in a video, if the video has the gaps inside of it ?
1er septembre 2020, par geo-freakI have a 10 min video file(.ts file), it has the gaps(empty video) from 4th min to 7th min. I want to insert the static frames from start of the gaps to end of the gap.


I have a command to create the static video with null(silent) audio.


ffmpeg -loop 1 -i img002.jpg -f lavfi -i anullsrc=channel_layout=5.1:sample_rate=48000 -c:v libx264 -t 10 -pix_fmt yuv420p -vf scale=480:320 -y output.ts



I want to add this static video with silent audio in a a recording from specific period.


How can I achieve it ?


Thanks in advance.


-
How can i insert 10 seconds of silent audio(null audio without images or video or black video) into video repeat every 15 seconds with ffmpeg ?
1er septembre 2018, par Adam EstelI have a clip
video.mp4
. How can i insert 10 seconds of only silent audio into this clip repeat every 15 seconds until the end of this clip with ffmpeg ?
I knowanullsrc
is an audio so i can’t useoverlay
filter. I research on google for a while but the only option i have isgte(mod(t,15),10))
.Thank you.