Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (60)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (10735)

  • sonicenc : dont put multiple assignments per line

    19 juin 2013, par Michael Niedermayer
    sonicenc : dont put multiple assignments per line
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/sonic.c
  • How do i know in the ffmpeg arguments command line what each argument do ?

    24 mai 2013, par Revuen Ben Dror

    I have this code :

    public void Start(string FileName, Bitmap Sample_Bitmap, int BitmapRate )
           {
               p = new NamedPipeServerStream(pipename, PipeDirection.Out, 1, PipeTransmissionMode.Byte);
               byte[] b = new byte[1280 * 720 * 3]; // some buffer for the r g and b of pixels of an image of size 720p
               System.Diagnostics.Process process = new System.Diagnostics.Process();
               process.StartInfo.FileName = @"D:\pipetest\pipetest\ffmpegx86\ffmpeg.exe";
               process.EnableRaisingEvents = false;
               process.StartInfo.WorkingDirectory = @"D:\pipetest\pipetest\ffmpegx86";
               process.StartInfo.Arguments = @"-f rawvideo -pix_fmt rgb24 -video_size 1280x720 -i
                                             \\.\pipe\mytestpipe -map 0 -c:v libx264 -r " + BitmapRate + " " + FileName;
               process.Start();

               process.StartInfo.UseShellExecute = false;
               process.StartInfo.CreateNoWindow = false;
               p.WaitForConnection();
           }

    So i know what BitmapRate do and the FileName but the rest of the arguments.

    What odes it mean the -f ? and the rawvideo is that from the decoders or encoders ? -i ? -c:v ? libx264 is a codec i guess and -r ?

    Tried to google for this arguments format but didn't find any.

    I have 4 text files lists :

    encoders.txt decoders.txt in both files i have rawvideo too.
    I have pixfmts.txt and fileformats.txt files.

    I want to build the arguments string from variables.

    So for example BitmapRate is int and FileName is string. And the rest of the arguments what types of variables each one i should put to get in the function ?

    For example

    the rgb24 what type is it ? the 1280x720 what type of variable it
    should be ?

  • Anomalie #3028 (Nouveau) : Strict standards editer_objet.php on line 183

    18 juillet 2013, par Debondt Didier

    J’ai trouver une petite coquille qui génère une erreur :

    Strict standards : Only variables should be passed by reference in /Users/Phenix/Sites/Vertige/marnix/ecrire/action/editer_objet.php on line 183
    

    Le code c’est ça :

    $champs[’statut’] = reset(array_keys($desc[’statut_textes_instituer’])) ;
    

    J’ai modifier pour que cela fonctionne sans erreur :

    $reset = array_keys($desc[’statut_textes_instituer’]) ;
    $champs[’statut’] = reset($reset) ;
    

    Avec ça plus d’erreur :)