Recherche avancée

Médias (91)

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5481)

  • Anomalie #2560 : SVP et url non fonctionnelle

    19 mars 2012, par cam.lafit -

    Complément d’information La page plante sur le rechargement js si aucun bloc descriptif n’est déplié. Si on charge une page avec le détail d’un des plugins présents alors le js fait ensuite son office.

  • fate-vc1_ilaced_twomv : use -flags +bitexact

    4 octobre 2014, par Janne Grunau
    fate-vc1_ilaced_twomv : use -flags +bitexact
    

    Also updates the reference since it was generated by the non-bitexact
    x86 specific code.

    • [DBH] tests/fate/microsoft.mak
    • [DBH] tests/ref/fate/vc1_ilaced_twomv
  • A ffmpeg command method into a webjob

    2 juillet 2017, par Fearhunter

    I am new with Azure Webjobs. I made an ffmpeg function to slice a stream into separate mp4 files :

    public Process SliceStream()
    {
       var url = model_s.Url;
       var cuttime = model_s.Cuttime;
       var output = model_s.OutputPath;
       return Process.Start(new ProcessStartInfo
       {
           FileName = "ffmpeg.exe",
           Arguments = $"-i \"{url}\" -c copy -flags +global_header -f segment -segment_time \"{cuttime}\" -segment_format_options movflags=+faststart -reset_timestamps 1 \"{output}\"",
           UseShellExecute = false,
           RedirectStandardOutput = true
       });
    }

    The var properties are the variables for the user input on the front-end. I want to scheduled this method into a webjob. How can I achieve this ? I saw an article on google

    https://zimmergren.net/getting-started-with-building-azure-webjobs-timer-jobs-for-your-office-365-sites/

    Need I just follow these steps to achieve my goal ? Or must I add some C# code to achieve this ?