
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 (66)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
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 (...)
Sur d’autres sites (6349)
-
Ffmpeg unsharp light
4 avril 2020, par user13125448im trying to sharpen a video with unsharp like so





ffmpeg -i video.mkv -c:v libx264 -vf unsharp,scale=1280 :-2:flags=lanczos -pix_fmt yuv420p -c:a aac output.mkv





But the unsharp filter applies sharpness too strong is there a setting for a more lighter sharpness something like watching a 1080p video but actually is 720p.


-
Using ffmpeg detect video quality
30 avril 2020, par Matei ZocHow i can detect if video is :



2160p
1440p
1080p
720p
480p
360p
240p




Im using this command to get the video width / height via Linux / PHP :



$Get_Info = shell_exec("ffprobe -v error -select_streams v:0 -show_entries stream=width,height,duration,bit_rate,pix_fmt,codec_name,codec_time_base,codec_tag_string,sample_aspect_ratio,display_aspect_ratio,avg_frame_rate -of default=noprint_wrappers=1 " . $File_Location);




Videos is uploaded on the server


-
How to create chunks of videos (.ts) and .m3u8 file from a mp4 video ?
2 mai 2024, par Nafisur AhmedI need to create chunks of videos (
.ts
) of fixed duration (say 5 or 10 seconds) from a mp4 video. And also I need the chunks in different formats (260p, 480p, 720p, 1080p).


I'm able to create the chunks and m3u8 using the command below :



ffmpeg -i input.mp4 -g 60 -hls_time 10 out.m3u8




but not able to create for different resolutions as mentioned above.