
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (38)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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 (5510)
-
Mpeg2-TS bad output and pixelation from FFmpeg on Android
8 décembre 2020, par henryI am using the FFmpeg extension for Exoplayer to play mpeg2ts video on a mobile device.
The device doesn't have a hardware codec for mpeg2ts video. So I want to use SW codec with FFmpeg.
But the output frames were broken, bad pixelation.
See the captured frame below.



But when I ran the same application on an Aosp device, the video frame was correct.


Does anyone have an idea why the output on mobile was broken ?
Actually, I don't have any background in FFmpeg and mpeg2ts media format.
And I just got this source from an Exoplayer distributor who is not available anymore.


I added ffmpeg_jni file
ffmpeg_jni.cpp


-
ffmpeg - how can I scale the video while perserving the total frames in it ?
14 juin 2018, par chozI have a video with a size of
515 x 755
, that I would like to resize proportionally to206 x 302
(so, factor is2.5
).In this video, I have the total of 588 frames, and I use
ffmpeg
to scale it, with this command.ffmpeg -i video.mp4 -vf scale=206:-1 xRotation_206.mp4
And I use this to check how many frames are there in the video, based on this answer.
ffmpeg -i video.mp4 -map 0:v:0 -c copy -f null - 2>&1 | awk '/frame=/ {print $2}'
The original video frames is good (588 frames). But, after resizing with the command above, my converted video now has 604 frames.
The question is, how can I resize the video by preserving the total frames in it ? It doesn’t really have to be
ffmpeg
approach, and any suggestion is appreciated.Here’s the sample video that I use : Link
-
FFMPEG - Converting MKV to MP4 on Gdrive using rclone mount. ERROR : output file #0 does not contain any stream
30 avril 2020, par Enrique TorrezI am trying to convert video files from my back-up rip files library that I have on my Gdrive account. I was successfully able to set up a dedicated server + plexserver + rclone + gdrive. I have files that are big and my family are not able to stream them due to the poor internet service that I have in my country. So I am trying to reduce the file size so it can be streamed directly



My rclone mount script is :



rclone mount gcache: /path --tpslimit 5 --allow-other --acd-templink-threshold 0 --stats 1s --buffer-size 64M --timeout 5s --contimeout 5s --max-read-ahead 1G --drive-chunk-size 64M -vv &




And my ffmpeg script is :



ffmpeg -i origen.mkv -c:v copy -movflags faststart -strict -2 convertedfile.mp4




I had the following errors :



moov atom not found




I used this command :



AtomicParsley myVideo.mp4 -P




Now when I execute



ffmpeg -i convertfile.mp4




I get this error :



Output file #0 does not contain any stream




What am I doing wrong ? I need some help please.