Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans 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 (...)

Sur d’autres sites (6178)

  • How to use guardianproject's ffmpeg library for android

    24 juillet 2014, par Abdul Qadir

    Here’s the link to the ffmpeg android library I’m trying to use :
    https://github.com/guardianproject/android-ffmpeg

    I’m trying to follow what is written in this post in order to use it :
    http://stackoverflow.com/a/21553337/1462190

    1. Included the ffmpeg library project into the eclipse. (File > Import)
    2. Added the ffmpeg library to my application. (Right clicked my project’s name > Properties > Android > Library)

    However I can’t get it to work. I get the following errors :

    In console :

    android-ffmpeg-library] Could not find android-ffmpeg-library.apk!

    In DDMS :

    07-24 17:00:24.990: E/AndroidRuntime(23935): java.lang.NoClassDefFoundError: org.ffmpeg.android.FfmpegController

    I have no clue to what could be the problem. Although i’m noticing one thing which I think I should mention here. After the second step, when I add the library, I see the green check indicating everything is fine. But after I run my application (which crashes before it launches) I see a red cross which of course indicates something’s wrong.

    Before I run my application :

    enter image description here

    After I run my application :

    enter image description here

    Any help would be appreciated ! thank you !

  • Hello i need a some istructions to use ffmpeg, I would like a code to get media file info

    16 juillet 2014, par user3547175

    I want to start by saying that i don’t know how to use FFMPEG in C#. I have a program that reads the information of a media file, I use this code about resolution, bitrate

    var player = new WindowsMediaPlayer();
    var clip = player.newMedia(file.FullName);
    lblLenght_.Text = (TimeSpan.FromSeconds(clip.duration)).ToString();      



    ShellFile shellFile = ShellFile.FromFilePath(file.FullName);
    lblFPS_.Text = (shellFile.Properties.System.Video.FrameRate.Value / 1000).ToString();

    lblHeight_.Text = shellFile.Properties.System.Video.FrameHeight.Value.ToString() + " px";
    lblWidth_.Text = shellFile.Properties.System.Video.FrameWidth.Value.ToString() + " px";
    lblResolution_.Text = shellFile.Properties.System.Video.FrameWidth.Value.ToString() + "x" + shellFile.Properties.System.Video.FrameHeight.Value.ToString() + " px";
    blBitrate_.Text = (shellFile.Properties.System.Video.TotalBitrate.Value / 1000).ToString() + " kb/s";

    but the problem is that ShellFile supports only a few formats, so I found some FFMPEG uses but I don’t know how to work with it. Can someone post the solution or some link to learn how to use it about my problem ?

  • avformat/mxfenc : set/force channelcount in MXF D-10

    25 juin 2014, par Gaullier Nicolas
    avformat/mxfenc : set/force channelcount in MXF D-10
    

    There are interoperability issues with D-10 related to the channelcount property in the generic sound essence descriptor.

    On one side, SMPTE 386M requires channel count to be 4 or 8, other values being prohibited.
    The most widespread value is 8, which seems straightforward as it is the actual size of the allocated structure/disk space.
    At the end, it appears that some vendors or workflows do require this descriptor to be 8, and otherwise just "fail".

    On the other side, at least AVID and ffmpeg do write/set the channel count to the exact number of channels really "used",
    usually 2 or 4, or any other value. And on the decoding side, ffmpeg (for example) make use of the channel count for probing
    and only expose this limited number of audio streams
    (which make sense but has strong impact on ffmpeg command line usage, output, and downstream workflow).

    At the end, I find it pretty usefull to simply give ffmpeg the ability to force/set the channel count to any value the user wants.
    (there are turnaround using complex filters, pans, amerge etc., but it is quite boring and requires the command line to be adapted to the input file properties)

    Reviewed-by : Matthieu Bouron <matthieu.bouron@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mxfenc.c