
Recherche avancée
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 (4236)
-
Converting Raw video data to a good quality compressed video using ffmpeg [closed]
12 janvier 2013, par Deepak BhatiaI have a raw video data of size 10 MBytes but when I convert the same to MPEG4 Video, its size becomes 20 MBytes. I am using ffmpeg 1.1.
Why the size is increasing on using MPEG4 Encoder for compressing the raw video ?
Thanks in advance.
Deepak Bhatia
-
How to resize video but do not stretch/modify original video using ffmpeg [migrated]
8 mars 2023, par Kujo Ludin -
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.