
Recherche avancée
Autres articles (60)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (6620)
-
ffmpeg not working with firebase media url
12 août 2020, par Devffmpeg -re -i https://firebasestorage.googleapis.com/v0/b/my_app.appspot.com/p/tutorials%2FEI024f51XnGmcTzrhG%2Fvideos%2Fa5b82509-cee3-4ce5-9f9b-ce2c5abda278?alt=media&token=42f70d71-f957-48be-940d-cc6eb5991217 -c:a aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1280x720 -preset superfast -profile:v baseline rtmp://127.0.0.1:1935/stream/my_video



When run above cmd in terminal I'm getting this error




[1] 10748
zsh : no matches found : https://firebasestorage.googleapis.com/v0/b/my_app.appspot.com/p/tutorials%2FEI024f51XnGmcTzrhG%2Fvideos%2Fa5b82509-cee3-4ce5-9f9b-ce2c5abda278?alt=media
[1] + exit 1 ffmpeg -re -i
zsh : command not found : -c:a




-
Creating a video from data of server-side script
8 mars 2016, par Peter LeupoldMy plan is to display the data that a server-side script generates in a video displayable on my web page. So far my approach is the following :
- A three dimensional integer array in a C script is use to accumulate the image data. Dimensions are width, breadth and color (R, G and B).
- The array is written to a ppm-file.
- The next picture is accumulated and written and so on.
- With ffmpeg a script merges the ppm-files to a mp4-video.
Basically this works, but of course faster would be nicer. I would appreciate proposals for fundamentally different approaches as well as help on the following details :
- Is there a file format simple as ppm that uses the HEX code for colors instead of triplets ? This would reduce the size of my array as well a the number of write operations.
- Do I loose much time if I print every single value to the file with an fprintf operation instead of accumulating lines into a string ? Or do compilers optimize this kind of sequences of writes ?
-
generating a video mosaic in client-side js
1er novembre 2020, par redbrainI'm writing a web app for the creation of mosaic videos, where multiple videos can tiled next to each other, like a virtual meeting or grid of surveillance cameras. I'd like the user to be able to download their creation as an video file.


I've currently been accomplishing this using a Node.js server to serve the rest of the site (which is static html/js) and then having one route execute ffmpeg and return the result. However, if this can be accomplished on the client side, the app would be easier to scale since I'd only have to serve static files, and nicer to write with only the client-side in mind.


Does anyone know of a proper or clean way to do this ? I've looked at the following methods so far :


- 

- using ffmpeg ported to webassembly - this seems to be used constantly for any sort of client-side video editing ; however it seems overkill and clunky for this purpose
- tiling all the videos in a
<canvas></canvas>
and rendering its output to an mp4 via the MediaStreamAPI - could be the best way, but it's not well documented






If I'm missing something obvious, please let me know. I figured I would look further for the best method before writing further. Thanks in advance.