
Recherche avancée
Autres articles (107)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (26624)
-
Is it possible to recover a slice of a webm file
16 septembre 2015, par Ned RocksonIf I have a webm file that’s, say, length 100 seconds and I have a piece of that file, say 20s - 40s, is this recoverable ? From my initial investigation it appears not because the webm format is based off of keyframe decoding. Passing this to VLC as well as ffmpeg it does not work. Is there some workaround or do I have to have the full file in order to get it working ?
-
Exe media file conversion to mp4
31 mai 2016, par karthikpjI have an exe file which is actually a media file which I need to convert to mp4. It contains footage from CCTV cameras.When I open that exe file,a launcher called SecureView is opened and the video can be played inside that player.
I need to convert that exe to mp4 for viewing it in other normal media players.
I have used a tool called exe2swf but there was no swf file in it.
Is there any way to separate that launcher from the video ? -
ffmpeg bulk mp4 to m3u8 each file different folder
16 octobre 2020, par vl4di want to make encode all the X video.mp4 and to get hls/folder(with the name of the video)/video.m3u8/anotherfolder(with the)video.ts files


i am trying something like this but is not working


for file in *.mp4; do ffmpeg -i "$file" -codec: copy -start_number 0 -f hls -hls_time 10 - 
hls_list_size 0 -hls_segment_filename "/var/www/html/hls/${file%.mp4}/ts/${file%.mp4}%d.ts" 
"/var/www/html/hls/${file%.mp4}/${file%.mp4}.m3u8"; done