
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 (96)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
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 (8169)
-
Resizing video with FFmpeg to double size, but maintains original rectangle video on the top left
1er juin 2022, par MauroI have a video with 320 x 240 pixels.


I want to convert it to double size : 640 x 480 pixels.


But I don't want the video upscaled.


I mean : The final file must be a 640 x 480 video file, with the "original video" inside a 320 x 240 rectangle on top left, and the rest of screen filled with black background.


How can I do it with ffmpeg ?


-
Best video format/codec/technique to send small video with syncronization
22 janvier 2016, par EpsiloncoolI have a strange task to solve. We have a small-sized video window (like 300x200 pixels, 256-colors palette) and 44kHz 2ch sound playing on server. We need to send this stream video to some clients (1,2.. up to 10). Strict requirements is syncronization (we should have video syncronized as precise as 20 ms on all clients) and loss-less (preferrably no losses at all, but it is discussable).
Please recommend any good video format/codec/linux software to install on server to make this thing possible. Thanks !
-
Concatenating videos using concat demuxer in FFMPEG is finished but video is lost in second video ?
3 octobre 2019, par Gopinathan BUsed concat demuxer in FFMPEG code to concat videos :-
cmd = arrayOf("-y", "-f", "concat", "-safe", "0", "-i", textFile!!.path, "-c:v", "libx264", "-crf", "23", "-preset", "ultrafast", "-c:a", "copy", outputFile.path)
After concatenate finished, the video one played correctly has both audio & video but video two - video is missing has only audio. Output file has size & time duration including two videos.
The textFile contains :-
file '/path/to/file1'
file '/path/to/file2'Used
absolutePath
for two mp4 video files.Tryed this FFMPEG concat video finished but the video missing. But no solution to my problem.
Anything I am missing in the command.