
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (64)
-
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. -
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 (...)
Sur d’autres sites (7008)
-
(ffmpeg) VBV buffer size not set - MPG to MPG
5 novembre 2020, par ThibaultI have a MPG file (mpeg2) with two audio streams.



I just want to remove one of the audio stream without re-encode or quality loss.



Here's my command (I don't -map the audio I want to delete) :



ffmpeg -i input.MPG
-map 0:v:0 -map 0:a:1
-vcodec mpeg2video
-c:a mp2
-y
output.MPG




It works BUT I have this error / warning :



[mpeg @ 0000020268f9a300] VBV buffer size not set, using default size of 230KB
If you want the mpeg file to be compliant to some specification
Like DVD, VCD or others, make sure you set the correct buffer size




And of course, the quality of the output video is just terrible !



How can I fix this ?



Thanks a lot for your answers ;)


-
hlsenc : When not using HLS_SINGLE_FILE, set vs->size to range_length
20 juin 2024, par Martin Storsjöhlsenc : When not using HLS_SINGLE_FILE, set vs->size to range_length
This matches what is done in the corresponding case for
HLS_SINGLE_FILE.Normally, vs->size is already initialized correctly - but when
writing the initial segment, with mp4 files, vs->size has been set
to the size of the init segment, while range_length contains the
real size of the first segment.Signed-off-by : Martin Storsjö <martin@martin.st>
-
Reduce the size of video for upload on server
5 septembre 2014, par sdevani92after finding lost of stuff and blog i am finally found the FFmpeg4Android lib to convert the video size from here now my problem is the whenever i am try to convert the video instead of redusing the size it is increase the size the command which i am use is share below
commandStr = "ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -s 320x240 -r 14 -aspect 3:4 -vcodec mpeg4 -b 2097152 -ab 48000 -ac 2 -ar 22050 /sdcard/videokit/in_.mp4";
setCommand(commandStr);
setOutputFilePath("/sdcard/videokit/out.mp4");
setProgressDialogTitle("Exporting As MP4 Video");
setProgressDialogMessage("Depends on your video size, it can take a few minutes");
runTranscoing();i am not getting any error the problem is only it increase the size of video. may be i am giving wrong command so any one can suggest me if i am going wrong.