Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (54)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4681)

  • Anomalie #2751 : conflit d’url propres

    5 juillet 2012, par Alexandre C

    Après nouveau test, oui ça marche. Au final ne rajoutait pas les suffixes id. Re-confirmer les réglages de "configuration d’url" en admin a réglé le problème. Désolé pour le bruit.

  • Encode to h265 with ffmpeg in batch

    20 septembre 2022, par Ricardo

    I have several Movies/Animes in Full HD and encoded in h264 (current market standard), and I need to perform the Encode to h265 of all these files (separated by folder and subfolders) to save space, which is the proper way to execute in batch (.bat file) ; below current code :

    


    for %%f in (*.mkv, *.mp4) do (
    ffmpeg -i "%%a" -c:a copy -c:v libx265 -vtag hvc1 lossless=1 -preset veryslow "Out\%%~na.mkv"
)


    


    In order to have the best compression of the final file and better image quality (which is visually identical to the current h264 file)

    


    Obs1 : I have both animations and movies and series with real people, can the "ffmpeg" configuration be different for each type ?

    


    Obs2 : In most files have multiple audio and video tracks and multiple subtitles, it is necessary that all audio, video and subtitles remain in the final files.

    


  • FFmpeg Image to Video command consuming 100% CPU

    23 décembre 2023, par Dishan Verma

    I am working on a project where I need to first extract all the frames of videos and after extracting the frames I need to stitch the frames back again showing 1 frame for exactly 1 seconds i.e I need to create a 1 FPS video from extracted frames.

    


    I am successfully able to extract frames of video using ffmpeg without any issues.

    


    But my FFmpeg command which I am using to convert frames to 1 FPS video is consuming 100% CPU, for example a 40 mb video input is consuming 8 GB of CPU. Below is how my FFmpeg command looks like.

    


    final String ffmpegCommandFormat = "%s -framerate 1 -i %s -c:v libx264 -pix_fmt yuv420p -crf 18 -y %s";
final String ffmpegCommand = String.format(ffmpegCommandFormat, FFMPEG_EXEC_PATH, framesPathRegex, pathToStoreProcessedVideo);


    


    I am creating a service which needs to support around 2 GB sized videos and with the current behaiviour it cannot even support 100 MB of video.

    


    Can anyone please help me here to understand why FFmpeg is consuming too high CPU and how can i resolve this issue ?
Is there any alternate/better/fast/efficient command which I can use to created 1 FPS video wither from extracted frames or directly from input video ?

    


    I am new to ffmpeg so not sure what else to explore.