
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (40)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Contribute to documentation
13 avril 2011Documentation 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 (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...)
Sur d’autres sites (4351)
-
How to connect ffmpeg to broadcasted rtsp live camera link feeds to users browser ??? These camera link are dynamic so it cannot be defined initially
9 décembre 2016, par vibhor GuptaThe following rtsp link gives me feed :
rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreamsThe following ffmpeg command helps gets me these feed and i can store it on my server :
ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts video.mp4But when i use the following command broadcast starts but no streaming is received :
ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts udp ://127.0.0.1:7000I even checked on the server for 7000 port but nothing is running so i am cannot understand what is going.
To Check I used vlc and in the network stream option i placed udp ://192.168.1.105:7000 as the network url. but it is not working
So friends i would like to know where i am going and if possible what can be a better solution for this problem ??
Thank You
-
Trying to flip a movie with ffmpeg hflip vplip fails
7 août 2019, par S.TI am trying to flip a movie with
hflip
and
vflipand it’s creating an empty movie in some of the movies i converted (some of them succeeded).
i tried to convert all kind of movies and i don’t know if this is the reason but maybe it related if the movie is in landscape or portrait ?
This is the command i use :ffmpeg -i INPUT -vf hflip -c:a copy OUTPUT
expected to see the movie flipped as i wanted in my command.
Thanks.
-
How to run ffmpeg in a scheduled batch file with a file exclusion list ?
5 juin 2022, par MrZoopsI have the following batch file created to run as a schedule task. It auto encodes the audio to AAC in my main media folder. Everything is working, but now I need to do 2 more things :



- 

- Delete the original upon completion.
- Set it so that the next time it runs, it does not try to convert the already converted files.







Is that possible ? How would that look ? Is there a way to "disregard" file names with
CONVERTED
in them ?


for /r "C:\Users\USER\Desktop\TEST" %%a in ("*.mkv") do ffmpeg -i "%%a" -vcodec copy -acodec aac -ac 2 -ab 256K %%~dpnaCONVERTED.mkv