Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (35)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

Sur d’autres sites (7018)

  • Problems cropping videos with ffmpeg -ss -t

    8 décembre 2016, par Alex Bollbach

    I have been trying to figure out how to precisely crop out sub-sections of a video final.mp4, for example a cropped video with range [0.2, 0.28] or [9.1, 10.2]. So I’ve been using ffmpeg with -ss and -t options. The following command (or some similar form) is what I’ve seen prescribed :

    ffmpeg -y -i final.mp4 -ss 00:00:01 -t 00:00:01.5 -acodec copy -vcodec copy crop1.mp4

    What I expect is a cropped video of length 1.5 starting at time 1.0, but I get a broken video that doesn’t play. Or I’ll try :

    ffmpeg -y -i final.mp4 -ss 1 -c copy -t 1.5 crop1.mp4

    and get a video with the audio cropped to 1.5 seconds but the video lasting much longer freeze framed.

    The point is this should be a relatively straightforward operation but I’m running into problems at every turn. What is wrong with these commands ? My original video is a 7 minute youtube ripped mp4 which I trimmed down to 10 seconds (this seemed to work). But now further finer-grain trimming of that video is showing confusing behavior. Perhaps my video file is somehow in a bad state from the first trimming ?

  • Flutter app crashes in release mode when initializing FlutterFFmpegConfig() ;

    18 février 2021, par Mahmoud Eidarous

    The app is working on Android on Debug mode(only) with no errors in the logcat/terminal.
But when I tested it on iOS (even in debug mode), it crashes on a specific page.
After long tests, I could know that this line was causing the app to crash.

    


    FlutterFFmpegConfig _flutterFFmpegConfig = FlutterFFmpegConfig();


    


    If I comment that line, the app won't crash, but I need that line to manipulate videos in the app.

    


    I'm using flutter_ffmpeg: ^0.3.0 in pubspec.yaml, and full-gpl package is set in android\build.gradle

    


    ext {
    flutterFFmpegPackage  = "full-gpl"
}


    


    Related package initializations code snippet :

    


    final FlutterFFmpegConfig _flutterFFmpegConfig = new FlutterFFmpegConfig();
final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();
final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();


    


    I'm not sure, but it seems like the app can't handle creating all these objects at the same class !
Anyone familiar with this problem ?

    


  • FFMPEG concatenate multiply files with various extensions and properties

    28 juillet 2022, par KRUK

    I'm trying to create a movie on Windows using ffmpeg from files that are from different devices and in different extensions (.mp4, .mov). Is there any way to combine any file extensions into one final movie that will play properly ?

    


    I'm thinking of such an approach, to first normalize all files to the same format (What is the recommended final format ?) and only then combine them into a final file.

    


    I am experimenting with this approach :

    


    ffmpeg -i [input.anyFormatX] outputX.mp4


    


    and then

    


    ffmpeg -f concat -i [List of files] output.mp4


    


    But unfortunately this does not work for all files, should pay attention to the codecs or maybe some other intermediate format ? The biggest problem appears with files recorded with Iphone and in extension .mov. After the first stage, these videos look overburnt, as if they have a lot of raised brightness, how to correct this ?

    


    Do you know perhaps any generic solution, which would allow the assembly of videos from different devices (including Iphone) and with different parameters such as frame rate or resolution ?