
Recherche avancée
Autres articles (43)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
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 (...)
Sur d’autres sites (5395)
-
preventing playing video files outside the app/website
5 octobre 2019, par hretici feel the down votes are coming ! but im desperate so here it goes
i have bunch of videos that i want my users to be able to play them only trough my mobile app or website(not sure about the platform) ... even when they’re downloaded on the client side
i’ve never worked with video files before but i have lots of coding expense and know multiple languages (js , php , python , node , .... )
but i done know where to begin , im not looking for code ... just someone with experience in this area to point me to the right direction and maybe give me some links to read about the subject and what technologies i need to get familiar with
i tried to search around but most results are about html5 player or desktop video players
i was thinking maybe i can encode mp4 files so they wouldn’t play with available players and then create a custom video player to decode and show them ?
any suggestion would be appreciated
-
How to add compression to ffmpeg command
13 septembre 2019, par balfredI am trying to add a good level of compression to the following ffmpeg command or if it is already good can you help me understand ?
I have seen that people might have luck using this command but I dont know how to merge it into mine
ffmpeg -i sourceFilePath -vcodec h264 -acodec mp3 newFilePath
This is my current command that I am using that I need help understanding why the previous command might be a better solution but how to implement my additional arguments
ffmpeg -i sourceFilePath -vcodec libx264 -profile:v baseline -level 3 newFilePath
I want to see optimal compression and still have my existing functionality using my additional arguments. I dont know what will produce the best results, this is out of my area of expertise.
-
How to record a specific window using ffmpeg ?
14 février 2023, par Matin LotfalieeI use ffmpeg to record a window using this code :



ffmpeg.exe
-f dshow 
-y 
-i video="screen-capture-recorder":audio="virtual-audio-capturer":audio="Microphone (USB Audio Device)" 
-framerate 15 
-vcodec libx264 
-crf 0 
-preset ultrafast 
-acodec pcm_s16le 
-vf crop=Width:Height:Left:Top 
output.flv




But the problem is i might move the window, this leads to recording an area without the window i want.



How can i capture a specific window that I am able to move it ?





Edit : I also used
gdigrab
to capture my window (Skype
for instance) instead ofdshow
:


ffmpeg.exe
-y
-f dshow
-i audio="virtual-audio-capturer":audio="Microphone (USB Audio Device)"
-f gdigrab
-draw_mouse 0
-i title="Skype"
-framerate 30
-vcodec libx264
-crf 0
-preset ultrafast
-acodec pcm_s16le
output.flv




But the conference is black...