
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (39)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (5516)
-
Split a video file into separate video and audio files using a single ffmpeg call ?
25 novembre 2015, par sdaauBackground : I would like to use MLT
melt
to render a project, but I’d like that render to result with separate audio and video files. I’d intend to usemelt
’s "consumer"avformat
which usesffmpeg
’s libraries, so I’m formulating this question as forffmpeg
.According to Useful FFmpeg Commands For Converting Audio & Video Files (labnol.org), the following is possible :
ffmpeg -i video.mp4 -t 00:00:50 -c copy small-1.mp4 -ss 00:00:50 -codec copy small-2.mp4
... which slices the "merged" audio+video files into two separate "chunk" files, which are also audio+video files, in a single call ; that’s not what I need.
Then, ffmpeg Documentation (ffmpeg.org), mentions this :
ffmpeg -i INPUT -map_channel 0.0.0 OUTPUT_CH0 -map_channel 0.0.1 OUTPUT_CH1
... which splits the entire duration of the content of two channels of a stereo audio file, into two mono files ; that’s more like what I need, except I want to split an A+V file into a stereo audio file, and a video file.
So I tried this with elephantsdream_teaser.ogv :
ffmpeg -i /tmp/elephantsdream_teaser.ogv \
-map 0.0 -vcodec copy ele.ogv -map 0.1 -acodec copy ele.ogg... but this fails with "Number of stream maps must match number of output streams" (even if zero-size
ele.ogv
andele.ogg
are created).So my question is - is something like this possible with
ffmpeg
, and if it is, how can I do it ? -
ffmpeg_opt : Set the video VBV parameters only for the video stream from -target
25 mai 2015, par Michael Niedermayer -
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 ??????????????????