Recherche avancée

Médias (91)

Autres articles (36)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans 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 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (3929)

  • ffmpeg - scale not working on all my cases

    24 avril 2017, par Thanh Dao

    I’m using ffmpeg to scale and change speed of my videos.

    And below script was not worked :

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.666*PTS[i]; [i]scale=640:640[j]; [0:a]atempo=1.5[p]" -map "[j]" -map "[p]" output.mp4 2>&1

    More simple script I testes also not working

    ffmpeg -i input.mp4 -filter_complex "scale=640:640" output.mp4 2>&1

    Original video have resolution 1280x720, and I want to resize to 640x640, with padding 320 left and right.

    What are my wrongs in script ?
    Sorry for my bad English !

  • Creating video with multiple audios and one still image with ffmpeg [on hold]

    4 mai 2014, par user3601509

    Hi i want to create many videos with multiples audios and one single picture.

    For example i have song1.mp3, song2.mp3, song3.mp3 and one single picture. What i need to do is to create many videos and name that videos as : song1.mp4, song2.mp4, song3.mp4

    I want to create many videos at once. Because i have a huge amount of songs and i need a lot of videos with that songs, sorry for my english.

    I have this script for only one picture and one mp3, but i need to create bulk videos can you help me ? ffmpeg -loop 1 -shortest -r 0.1 -i online.mp3 -i imagen.png -ab 128k output.avi

    Many thanks

  • libavfilter/vf_dnn_detect : Use class confidence to filt boxes

    17 janvier 2024, par Wenbin Chen
    libavfilter/vf_dnn_detect : Use class confidence to filt boxes
    

    Use class confidence instead of box_score to filt boxes, which is more
    accurate. Class confidence is obtained by multiplying class probability
    distribution and box_score.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/vf_dnn_detect.c