Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (41)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (4556)

  • Apply different effects to Video

    10 octobre 2013, par ishan jain

    I am creating an application, in which I have to give the option to apply different effects (normal, sepia, black & white, vintage, HD) to the VIDEO. I am creating this application this application for min android 2.3 version.
    I am thinking of following the flow video -> convert to image frames -> apply effect to frames using some library -> convert frames to video.

    Can anyone help me that if above flow is correct or not ? And which library I can use for applying effects to the frames or is there any other way to apply the effects ?

    Thanks

  • avfilter/vidstabtransform : allow negative zoom.

    13 septembre 2013, par Georg Martius
    avfilter/vidstabtransform : allow negative zoom.
    

    This is useful in addition to crop=black.

    Signed-off-by : Clément Bœsch <clement@stupeflix.com>

    • [DH] libavfilter/vf_vidstabtransform.c
  • Overlaying video with ffmpeg

    11 novembre 2012, par elee

    I'm attempting to write a script that will merge 2 separate video files into 1 wider one, in which both videos play back simultaneously. I have it mostly figured out, but when I view the final output, the video that I'm overlaying is extremely slow.

    Here's what I'm doing :

    1. Expand the left video to the final video dimensions

      ffmpeg -i left.avi -vf "pad=640:240:0:0:black" left_wide.avi

    2. Overlay the right video on top of the left one

      ffmpeg -i left_wide.avi -vf "movie=right.avi [mv] ; [in][mv] overlay=320:0" combined_video.avi

    In the resulting video, the playback on the right video is about half the speed of the left video. Any idea how I can get these files to sync up ?