
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (6046)
-
How to make ffmpeg realy silen without to use another process
29 octobre 2013, par DouguiI'm using ffmpeg in a ruby code like this :
fork { exec "ffmpeg -f alsa -ac 2 -i pulse -y #{path} -r 22050" }
It sends the pid of the created process. In the trace, I have this :
Stream mapping:
Stream #0.0 -> #0.0
Press ctrl-c to stop encoding
psize= 832kB time=4.52 bitrate=1507.4kbits/s 6.1kbits/s its/s
size= 963kB time=5.14 bitrate=1536.1kbits/s
video:0kB audio:963kB global headers:0kB muxing overhead 0.004664%I want to make it quiet. I tried to add
-loglevel panic
and-v 0
but it does not work. I know, I can add this>/dev/null 2>&1
but it create another process and my method send only the pid of the first process.Is there a way to make ffmpeg realy silent without to create another process ?
-
webm to mp4 conversion using ffmpeg ubuntu
16 août 2018, par daemonI have video and I want to convert that to mp4
It is working fine for the .flv and other formats. But when I’m trying to convert webm to mp4 the video is not getting convertedffmpeg -i /input.webm /output.mp4
It is only converting to a 48kb file. The actual size of video is 850mb
I am getting this
Output #0, mp4, to '/output.mp4':
Metadata:
encoder : Lavf56.40.101
Stream #0:0(eng): Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 29.97 fps, 30k tbn, 29.97 tbc (default)
Metadata:
encoder : Lavc56.60.100 libx264
Stream mapping:
Stream #0:0 -> #0:0 (vp9 (native) -> h264 (libx264))
Press [q] to stop, [?] for help
Killed 21 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/AIt is working locally but on live server it’s not generating the output as expected
-
ffmpeg won't convert GIF to WEBM
2 décembre 2023, par NaughtySquidI'm trying convert a GIF to a WEBM for uploads to my site, to get smaller files (GIFs are so big...) and get all the advantages of videos, like pausing.
But ffmpeg gives this error :




Input #0, gif, from '1.gif': Duration: N/A, bitrate: N/A
 Stream #0:0: Video: gif, bgra, 960x540, 16.67 fps, 16.67 tbr, 100 tbn, 100 tbc Stream mapping: Stream #0:0 -> #0:0 (gif (native) ->
vp8 (libvpx)) Press [q] to stop, [?] for help [libvpx @
0x5560ca413960] v1.6.1 [libvpx @ 0x5560ca413960] Transparency encoding
with auto_alt_ref does not work Error initializing output stream 0:0
-- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!





Here's my ffmpeg line :


ffmpeg -r 16 -i 1.gif -c:v libvpx -crf 12 -b:v 500k test.webm