Recherche avancée

Médias (91)

Autres articles (56)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (5514)

  • JavaCV UnsatisfiedLinkError Using an Ffmpeg

    20 août 2014, par StoneAgeCoder

    I am new to JavaCV and am having an extremely hard time grabbing frames from an mp4. Is JavaCV still alive because it seems to have hit the software scrapyard because I cannot find any good documentation for the API or any tutorials on how to properly add the classpath of opencv.dll’s with the current versions. Can anyone provide me the proper way to get rid of the UnsatisfiedLinkError. The OpenCV site says 2.4 + versions just need a system path C :/opencv/build/vc10/bin.

    FrameGrabber g = new FfmpegFrameGrabber("video.mp4"); // This is what is throwing the exception.

    NOTE : IplImage is working just fine. My OpenCV version is 2.4.9 ; JavaCV version 0.9

  • How can I delete a file in FOR loop in batch scripting after another command ?

    1er octobre 2020, par Andrew Anderson

    I compress a video with FFMPEG by means of a batch scripting one-liner with a FOR LOOP. After compressing I want to remove the original file.

    


    This code perfectly makes the compressing job, but the original file is not being removed :

    


    for %%i in (*.mp4) do ffmpeg -i "%%i" -vcodec libx265 -crf 28 "%%~ni"-small.mp4&&del "%%i"
pause


    


    What have I missed ?

    


    By the way, this is a near to perfect compression ratio for any kinds of educational videos, tutorials, etc. which have occupied your hard drive.

    


  • how to join two flv files in objective-c

    18 février 2014, par yudun1989

    i've parsed a video web and got the flv files for the video, but the files are seperated, so i must join them together, i know if i use ffmpeg, it should be easy just like ffmpeg -f concat -i mylist.txt -c copy output.flv ,but as i'm writing a mac software, i must write it in objective-c.i could't found any document (or sdk) to read so it's hard for me to begin.

    so ,how to join them in objective-c code ? do i need to pull the ffmpeg project down to my project ?if it is necessary, what is the next step ?