
Recherche avancée
Autres articles (60)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (7008)
-
lavc/g722dsp : optimise R-V V apply_qmf
19 novembre 2023, par Rémi Denis-Courmontlavc/g722dsp : optimise R-V V apply_qmf
This stores the constant coefficients deinterleaved, so that they can be
loaded directly with NF=0. Unfortunately, we cannot optimise loading the
input, due to insufficient memory alignment (not 32-bit).Before :
g722_apply_qmf_c : 82.5
g722_apply_qmf_rvv_i32 : 78.2After :
g722_apply_qmf_c : 82.5
g722_apply_qmf_rvv_i32 : 65.2 -
How take a screenshoot using FFMpeg-bundle
4 septembre 2014, par PokeRwOwI realize a upload video with Symfony and ffmpeg bundle (https://github.com/pulse00/ffmpeg-bundle). The goal it’s a website with a upload video and convert behind for return video in mp4
So now, the convert in mp4 works fine but i want to take a screenshoot in video (the mmpeg library permit this) but with this bundle he returned me an error :Attempted to load class "TimeCode" from namespace "FFMpeg\FFMpeg\Coordinate" in /var/www/src/VD/VideoGalleryBundle/Controller/AdminController.php line 62. Do you need to "use" it from another namespace ? Perhaps you need to add a use statement for one of the following : FFMpeg\Coordinate\TimeCode.
Use statement is in the controller in the beggining but he don’t want loaded this.
Thanks per advance !
PokeR
-
Convert and stream videos [on hold]
26 septembre 2013, par user969068I am going to develop a php script on linux based server which will be used to upload videos on server and stream to users. I have seen many open source free/paid libraries available with flash,html5 etc players. After research I have decided to go with ffmpeg to convert videos and use jwPlayer with RTMP protocol to stream videos.
I am not much familiar with streaming concept but I have researched a lot on this subject since few days, so last I thought to ask here if I am going the correct way to achieve my goals, which are listed below :
- My main concern is to start streaming videos as soon page is loaded.
- Convert videos after upload ( Found ffmpeg for this purpose is well suited )
- Seeking video should be faster (which after searching I found is good with RTMP protocol)
Please can someone guide me if I am going in the right direction by choosing ffmpeg, jwplayer with RTMP protocol. Thanks a lot for any guidance.