
Recherche avancée
Autres articles (85)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
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 (...)
Sur d’autres sites (10234)
-
avcodec/dolby_e : add 'f' suffixes to floating point literals
22 juillet 2017, par foo86 -
How can limit video duration before uploading and implement content detection in an ASP.NET Core 6 backend
8 avril 2024, par ashok patelWe are working on a project, essentially a social media app. In this project, I'm handling the backend development. Users can upload videos of up to one minute duration.


Before saving the videos to the server, I need to convert all uploaded videos to MP4 format.


Additionally, I also need to check if the videos contain any adult content. I am unsure how to start this task.


I have downloaded an MP4 video from a website https://www.quickpickdeal.com/coding/download-sample-mp4-video-mp4-test-videos, and installed ffmpeg for converting video Mp4 for before saving it to the server but I don't know how to limit 1min video & check if the videos contain any adult content.


Can someone suggest how I can achieve these tasks in ASP.NET Core 6 ?


-
Ffmpeg - Exclamation Point Stopping Watermark
25 août 2018, par user5947524I am using the code below to automatically watermark videos in a folder :
for %%a in ("C:\Users\Work\Desktop\Redo\*.mp4") do (
for /F "delims=" %%I in ('ffprobe -v quiet -show_entries stream^=width -of csv^=p^=0:s^=x %%a') do set "codec=%%I"
ffmpeg -i logo.png -y -v quiet -vf scale=!codec!*0.25:-1 scaled.png
ffmpeg -i "%%a" -vf "movie=scaled.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h [out]" "C:\Users\Work\Desktop\Redo Done\%%~na.mp4"
)Some of the videos fail to watermark and give the similar error below :
C:\Users\Work\Desktop\Redo\Arcade_h-overlay_h [out]: No such file or directory
I found out all videos with exclamation points (!) in the name do this.
How can I get these videos to watermark with an exclamation point in the title ?