
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (40)
-
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 (7915)
-
How to replace a snippet in a video without reencoding the whole video
3 novembre 2022, par Simon StreicherI am trying to edit and replace a section of a video without reencoding the whole video.
Here are the steps I think I need to take :


1. Find keyframes


input :


ffprobe -v error -select_streams v:0 -skip_frame nokey -show_entries frame=pkt_pts_time -of csv=p=0 'example.mkv'



output :


0.000000
1.001000
11.011000
13.430000
20.812000
30.822000
40.832000
50.842000
⋮



2. Export relevant section


For example, export the snippet
40.832000 → 50.842000
.

3. Edit and reencode


After editing that section, I need to reencode it to the original codecs for compatibility with the surrounding video. For example, this is the original codecs :


Stream #0:0: Video: hevc (Main 10), yuv420p10le(tv, bt2020nc/bt2020/smpte2084), 3840x1600 [SAR 1:1 DAR 12:5], 23.98 fps, 23.98 tbr, 1k tbn, 23.98 tbc (default)



4. Inject edit back into the video stream


Finally, I need to use FFmpeg somehow to retain everything from the original file (audio, subtitles, chapters, etc.) and to construct a new video stream (for example,
Stream #0:0
) that is exactly0 → 40.832000
of the original, the whole edited section, and50.842000 → end
of the original section.

My main questions are :


- 

- A. How do I trim the video stream in 2. without reencoding ?
- B. Assuming that the edited video's resolution will remain the same, what is the command for FFmpeg to encode my edit to the codecs in 3. (and would the video be concatenable with the original video) ?
- C. How should I go about glueing the sections together ? Should I simply trim
Stream #0:0
into sectionsv1 = 0 → 40.832
andv2 = 50.842 → end
and then concatenate a new stream asnew = v1 + edited + v2
? - D. How do I replace
Stream #0:0
withnew
?










And probably the most important question : are my assumptions correct and can this be achieved ?


-
ffmpeg converted mp4 video format is not playing on html5 video player
15 août 2017, par alinai have converted a video via ffmpeg to mp4 but its playing on desktop pc player like Vlc but not on html5 player or wordpress player.
Iam using this command while conversion :
ffmpeg." -i ".$video_to_convert." -i watermark.png -filter_complex 'overlay=10:main_h-overlay_h-10' -c:v libx264 -crf 17 -preset slow -c:a libfaac -b:a 192k -ac 2 -b:a ".$quality." -acodec libmp3lame -ab 126000 -ar ".$audio." -ac 2 -s ".$size." ".$converted_vids.$name.".".$new_format."
where :
.$video_to_convert. = input.mp4
.$converted_vids.$name. = output.mp4
is there any syntax problem ??????????????????
-
ffmpeg_opt : Set the video VBV parameters only for the video stream from -target
25 mai 2015, par Michael Niedermayer