
Recherche avancée
Autres articles (45)
-
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 -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4481)
-
How can I analyze file and detect if the file is in H.264 video format ? [on hold]
5 octobre 2016, par codeDomI write software C/C++ to recover deleted files, and I need to identify files according to their binary content, so my question is there a simple way to know if a particular file is H.264 format video ? is H.264 has an signature ?
I saw the code of FFMPEG here, but can it help me, how ?
-
Track format difference when importing BMP file into quicktime .mov file
23 juillet 2015, par Neal DavisI am creating a quicktime container .mov file from one BMP file in two ways :
- Using the quicktime COM object API for .NET C# under windows
- Using ffmpeg command line (rawvideo codec)
Both resulting .MOV files open with Quicktime Player Pro just fine and look identical to my eyes, also they are either the same size as the original BMP or larger.
However, when viewing the track properties under QT Player PRO, they show :
- track format = BMP.
- track format = NONE.
Is there likely a difference since in 1. above I do not set a track properties format ? In other words, is there likely any changes being made to the BMP bits in number 1 above (like compression, or alpha, or ???) ?
-
FFMPEG : How to transcode(transfer) Attached Picture (APIC) from source mp3 file to destination mp3 file using FFMPEG ?
24 février 2012, par javanetbeansI have input file as 02.mp3. I want to change it to mp3 file only with specific bit rate. While doing so, I want to preserve all the metadata and the APIC, attached picture corresponding to image should also be transfered to the destionation file. I am using FFMPEG and i am using the following command line...
ffmpeg -y -i 02.mp3 -id3v2_version 3 -ab 128000 -ss 0 -acodec libmp3lame -f mp3 -ac 2 -ar 44100 output.mp3
source file : 02.mp3
destination file : output.mp3.But in destination file, i am not getting APIC(attached picture corresponding to 02.mp3). Can anyone help. I am getting all other mp3 tags in output.mp3 except for APIC. How to get APIC in destinaton file as well ?