
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (38)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (7289)
-
Video ; Zoom to different points with a single render (?)
31 mai 2021, par RewossKyBased on 16 seconds, I want the codes to zoom to the top left for the first 4 seconds, to the bottom left for the next 4 seconds, to the top right for the next 4 seconds, and then to the bottom right for 4 seconds.


Structurally, the codes are ready, but I need small details, I want to render them in one go (without rendering 4 times) and focus every 4 seconds elsewhere.


If you can help me I would be very happy. I couldn't figure it out for days.


'Top left
ffmpeg -y -i input.mp4 -vf "zoompan=z='if(lte(mod(time,16),4),2,1.05)':d=1:x=iw/3-(iw/zoom/2):y=ih/3-(ih/zoom/2):fps=29.97" output.mp4


Top right
ffmpeg -y -i input.mp4 -vf "zoompan=z='if(lte(mod(time,16),4),2,1.05)':d=1:x=iw/1-(iw/zoom/2):y=ih/3-(ih/zoom/2):fps=29.97" output.mp4


Bottom left
ffmpeg -y -i input.mp4 -vf "zoompan=z='if(lte(mod(time,16),4),2,1.05)':d=1:x=iw/2-(iw/zoom/1):y=ih/1-(ih/zoom/1):fps=29.97" output.mp4


Bottom right
ffmpeg -y -i input.mp4 -vf "zoompan=z='if(lte(mod(time,16),4),2,1.05)':d=1:x=iw/1-(iw/zoom/2):y=ih/1-(ih/zoom/2):fps=29.97" output.mp4'


-
Convert MP4 File to M3U8(only m3u8 file No ts file) [closed]
28 février 2024, par Ayan AnsariI'm a beginner working on a content streaming app (like Netflix) where i want to add feature of quality control of the content (like switch to 480p, 720p, 1080p etc). I'm using Exoplayer for video player and the app is almost ready. But the problem i've been facing is that all the files are either mp4, mkv etc file but i need m3u8 file. So I tried converting video using FFmpeg tools which worked but it gives me LOTS OF TS file which i need to upload along with the m3u8 file. After doing some more research i was able to reduce it to 1 m3u8 and 1 TS file. Is it possible to Create only 1 m3u8 file no TS file ? Here are what i've tried.


ffmpeg -i input.mp4 -c:a aac -strict -2 -c:v libx264 -preset ultrafast -crf 28 -maxrate 2M -bufsize 4M
-hls_time 6 -hls_playlist_type vod -hls_flags single_file -f hls output.m3u8



I also thought i will upload all the video in different quality manually, but as a broke 17 Y/O teenager, noobie who don't know how to use AWS or cloud Servers and also AWS or Google Cloud doesn't accept Indian Debit Card(Rupay) for free trial.
Please also suggest some where i can store these data for free i guess( i don't care about where i upload, i just need the link which i can put in my database.)
Thank You :)


-
lavfi/qsvvpp : avoid overriding the returned value
28 novembre 2022, par Haihao Xianglavfi/qsvvpp : avoid overriding the returned value
It means more than one output is ready when
MFXVideoVPP_RunFrameVPPAsync() returns MFX_ERR_MORE_SURFACE [1].
Currently the returned value from MFXVideoVPP_RunFrameVPPAsync() might
be overridden, so the check of 'ret == MFX_ERR_MORE_SURFACE' is always
false when MFX_ERR_MORE_SURFACE is returned from
MFXVideoVPP_RunFrameVPPAsync()Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>