Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (13)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4842)

  • Anomalie #4144 (Nouveau) : Problème fonction autoriser() dans inc/sessions

    29 mai 2018, par Samuel Burjade

    spip/ecrire/inc/session.php (révision 23641) (ligne 211)

    Quand on utilise l’API session_set() dans mes_fonctions.php, la fonction autoriser() fait planter l’accès à interface privée.

    Cela semble mieux tourner avec if (($auteur[’statut’] == ’0minirezo’) and _DUREE_COOKIE_ADMIN)

  • Revision 61148 : Il faut faire le test sur $saisies[$cle][’saisies’] car ...

    9 mai 2012, par yffic@… — Log

    Il faut faire le test sur $saisies[$cle]saisies ? car $saisies[$cle]saisies ? peut avoir été supprimé du tableau de saisies ligne 362 dans le cas où le fieldset possède sa propre condition et que cette dernière n’est pas remplie. (Joseph)

  • how to merge Audio and video in C# windows form other than ffmpeg

    31 janvier 2018, par Tahir Mulla

    Im trying to merge audio and video using ffmpeg following is my code,
    problem is it take too much time for long video,is there any other way of merging audio and video files

           string Path_FFMPEG = Application.StartupPath + "\\ffmpeg.exe";
           string Wavefile = applicationPath + @"\Vizipp_Video_" + currentDateTime + ".wav"; ;
           string videoFile = applicationPath + @"\Vizipp_Video_" + currentDateTime + ".avi";
           string strResult = applicationPath + @"\Vizipp_Video_" + currentDateTime + ".mpg";

           System.Diagnostics.Process proc = new System.Diagnostics.Process();


               proc.StartInfo.Arguments = string.Format("-i {0} -i {1} {2}", Wavefile, videoFile, strResult);
               proc.StartInfo.UseShellExecute = false;
               proc.StartInfo.CreateNoWindow = false;
               proc.StartInfo.RedirectStandardOutput = true;
               proc.StartInfo.RedirectStandardError = true;
               proc.StartInfo.FileName = Path_FFMPEG;
               proc.Start();
               //string StdOutVideo = proc.StandardOutput.ReadToEnd();
               //string StdErrVideo = proc.StandardError.ReadToEnd();
               MessageBox.Show("Please wait while we are processing on your video recording...", "Vizipp", MessageBoxButtons.OK, MessageBoxIcon.Information);