
Recherche avancée
Autres articles (35)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (6407)
-
lavu/tx : invert permutation lookups
27 février 2021, par Lynnelavu/tx : invert permutation lookups
out[lut[i]] = in[i] lookups were 4.04 times(!) slower than
out[i] = in[lut[i]] lookups for an out-of-place FFT of length 4096.The permutes remain unchanged for anything but out-of-place monolithic
FFT, as those benefit quite a lot from the current order (it means
there's only 1 lookup necessary to add to an offset, rather than
a full gather).The code was based around non-power-of-two FFTs, so this wasn't
benchmarked early on. -
FFMpeg Android : merge images with audio for specific duration
3 juillet 2018, par KillerI have been working on
FFMpeg
from past 7 days. I am required to create a video where I need to perform following :Concat
few images into video picked from android storage.Add a music
file [same picked from android storage].Set Duration per image
to be shown in the video. e.g. if 3 images are picked then total duration of video should be 3*duration choosen by user.
What I have done so far.
I am using
implementation 'nl.bravobit:android-ffmpeg:1.1.5'
for theFFmpeg
prebuild binaries.
Following is the command that has been used to concatenation the images and set the duration :ffmpeg -r 1/duration_selected_by_user -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4
Note :
- By adding the duration chosen by a user as frame rate I am able to set the duration of each image to be shown.
- Concat work well and images are merged to for the video.
Problem :
When I try to add audio in the same process, progress run for a long time even for small audio by using the following command :ffmpeg -r 1/duration_selected_by_user -i path_of_audio_file.mp3 -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4
It looks like there is some issue in command as I am not much familiar and experienced with the technology. How can I improve the performance of merging images and audio to get the better results ?
Important Links related to context :
-
FFMpeg : merge images with audio for specific duration
10 juillet 2018, par KillerI have been working on
FFMpeg
from past 7 days. I am required to create a video where I need to perform following :Concat
few images into video picked from android storage.Add a music
file [same picked from android storage].Set Duration per image
to be shown in the video. e.g. if 3 images are picked then total duration of video should be 3*duration choosen by user.
What I have done so far.
I am using
implementation 'nl.bravobit:android-ffmpeg:1.1.5'
for theFFmpeg
prebuild binaries.
Following is the command that has been used to concatenation the images and set the duration :ffmpeg -r 1/duration_selected_by_user -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4
Note :
- By adding the duration chosen by a user as frame rate I am able to set the duration of each image to be shown.
- Concat work well and images are merged to for the video.
Problem :
When I try to add audio in the same process, progress run for a long time even for small audio by using the following command :ffmpeg -r 1/duration_selected_by_user -i path_of_audio_file.mp3 -f concat -safe 0 -i path_of_concat_file.txt -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p path_of_output_video_file.mp4
It looks like there is some issue in command as I am not much familiar and experienced with the technology. How can I improve the performance of merging images and audio to get the better results ?
Important Links related to context :